/* Base Layout Styles */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14pt;
}

main {
    flex: 1;
}

.footer {
    margin-top: auto;
}

/* Navbar Styles */
.navbar {
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: transparent !important;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar:not(.navbar-scrolled) .nav-link,
.navbar:not(.navbar-scrolled) .navbar-brand {
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.navbar:not(.navbar-scrolled) .btn-primary {
    background-color: white;
    color: #0d6efd !important;
    border-color: white;
    text-shadow: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95));
    padding: 80px 0;
    margin-top: 0;
    padding-top: 120px;
}

.hero h1 {
    color: #000;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.hero-text {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    line-height: 1.4;
    margin-bottom: 2rem;
}

/* Common Components */
.claim-box {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
}

.action-button {
    background: #28a745;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.2rem;
}

.action-button:hover {
    background: #218838;
    color: white;
    transform: translateY(-2px);
}

/* Resource Section */
.resource-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.resource-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.resource-card p {
    color: #666;
    line-height: 1.6;
}

/* Evolution Section */
.evolution-section {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
    padding: 80px 0;
}

/* How It Works Section */
.how-it-works {
    background: #fff;
    padding: 60px 0;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

/* Utility Classes */
.highlight-text {
    color: #28a745;
}

.comparison-image {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 30px;
}

.stress-section {
    font-style: italic;
    font-size: 1.8rem;
    margin: 40px 0;
}

/* Terms & Privacy Pages */
.terms-section,
.privacy-section {
    padding: 80px 0;
    padding-top: 120px;
}

.terms-section h2,
.privacy-section h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.terms-section h3,
.privacy-section h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-header {
    min-height: 300px;
    background-color: #2C3E50;
    padding: 80px 0;
    padding-bottom: 50px;
    border-bottom: 5px solid #28a745;
}

/* Icon styles */
.w-5 {
    width: 1.25rem;
}
.h-5 {
    height: 1.25rem;
}
.w-6 {
    width: 1.5rem;
}
.h-6 {
    height: 1.5rem;
}
.inline {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.25rem;
}

/* Navbar icon adjustments */
.navbar .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer icon adjustments */
.footer li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer address {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
} 

.rounded-lg {
    border-radius: 1rem;
}

.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section {
    padding-top: 80px;
    padding-bottom: 80px;
}

a {
    text-decoration: none;
    color: #000;
}

.font-weight-black {
    font-weight: 700;
}

.navbar-brand, .logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

@keyframes kenburns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.2) translate(50px, 50px);
    }
}

.damageItem {
    min-height: 60px;
}

.damageItem:hover {
    background-color: #f8f9fa;
}

hr {
    border-color: #dddddd;
}

.step {
    width: 25%;
}

.step div {
    font-size: 0.875rem; /* Default size for larger screens */
}

.step-title {
    font-size: 1.25rem; /* Default size for larger screens */
    padding-bottom: 10px;
}

.hasDamage {
    font-size: 1rem;
}

@media (max-width: 576px) {
    .step-title {
        font-size: 0.95rem; /* Smaller size for phone screens */
        padding-bottom: 5px;
    }
    .step {
        width: 35%;
    }
    .step div {
        margin-top: 5px;
        font-size: 0.75rem; /* Smaller size for phone screens */
        line-height: 0.75rem; /* Adjust line height to reduce space between lines */
    }

    .damagedDescription {
        font-size: 0.875rem;
    }

    .roomOptionName {
        font-size: 0.8rem;
    }

    .hasDamage {
        font-size: 0.8rem;
    }
}

.display-4 {
    font-size: 2.5rem;
}

.accordion-button {
    box-shadow: none !important;
    overflow: hidden;
}

.accordion-button:focus {
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}