#main-navigation {
    background: linear-gradient(135deg, #8B1538 0%, #A91B47 100%);
}

#main-navigation.scrolled {
    background: #fff;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}
body.forum .logo {
    color: var(--primary-red);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    /* color: white; */
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}
/* .scrolled a {
    color: var(--text-dark);
} */

/* .nav-menu a:hover {
    opacity: 0.8;
} */

.hero-section {
    background: linear-gradient(135deg, #8B1538 0%, #A91B47 50%, #8B1538 100%);
    color: white;
    padding: 100px 0 30px 0;
    position: relative;
    overflow: hidden;
}
.hero-section.home {
    padding: 150px 0 80px 0;
}

.home #hero-container-quotes {
    display: none;
}
.hero-section:not(.home) #hero-container-intro {
    display: none;
}
.hero-section:not(.home) #hero-container-quotes {
    display: block;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    transform: scale(0.9);
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.highlight-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-button {
    display: inline-block;
    background: white;
    color: #8B1538;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* .hero-container .cta-button {
    transform: scale(0.9);
} */
.hero-container .cta-button:hover {
    /* transform: translateY(-2px) scale(0.92); */
    background: white;
    color: #8B1538;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-5px);
}

.hero-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 30px;
    color: white;
}

.image-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.image-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* .services-preview {
    background: #f8f8f8;
    padding: 80px 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-title {
    text-align: center;
    font-size: 2.5rem;
    color: #8B1538;
    margin-bottom: 60px;
    position: relative;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #8B1538;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.services-container .service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #8B1538;
}

.services-container .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.services-container .service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.services-container .service-card h3 {
    color: #8B1538;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.services-container .service-card p {
    color: #666;
    line-height: 1.6;
} */


/* .quote-section {
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    position: relative;
    z-index: 2;
} */

.quote-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 0 auto 25px; */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    float: left;
    margin-right: 20px;
}

.quote-icon svg {
    width: 30px;
    height: 30px;
    fill: rgba(255, 255, 255, 0.8);
}

.quote-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 300;
}

.quote-author {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
}

.quote-author::before {
    content: '—';
    margin-right: 8px;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .image-container {
        transform: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .quote-text {
        font-size: 18px;
    }

    .nav-menu {
        display: none;
    }
    .nav-menu.active {
        display: block;
    }
}