﻿@font-face {
    font-family: 'Sonder';
    src: url('/fonts/SonderRegular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Serif Display', serif;
    src: url('/fonts/NotoSerifDisplay-VariableFont_wdth,wght.ttf') format('opentype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Serif Display', serif;
    src: url('/fonts/NotoSerifDisplay-Italic-VariableFont_wdth,wght.ttf') format('opentype');
    font-weight: 100 900;
    font-style: italic;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 65px 240px 10px 240px;
    z-index: 100;
    position: relative;
}

.navbar-left .logo {
    font-size: 110px;
    font-family: "din-condensed", sans-serif;
    font-style: normal;
    font-weight: 500;
    color: #000;
    margin: 0;
    display: flex;
    gap: 8px;
}

.logo span {
    display: inline-block;
    transition: transform 0.6s ease;
    transform-origin: center bottom;
}

.navbar-left a {
    text-decoration: none;
}

.navbar-right .menu {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.menu li a {
    font-family: 'Noto Serif Display', serif;
    text-decoration: underline;
    font-weight: 500;
    font-size: 1.3em;
    letter-spacing: 0.03em;
    color: #2B2E34;
    transition: all 0.3s ease;
    display: inline-block;
}

    .menu li a:hover {
        color: #F7BBB7;
        transform: translateY(-4px);
    }

/* Hamburger toggle (mobile only) */
.navbar-toggle {
    display: none;
    font-size: 2em;
    cursor: pointer;
    color: #000;
}

/* Media query */
@media (max-width: 1400px) {
    .navbar {
        padding: 60px 140px;
    }
}

@media (max-width: 1200px) {
    .navbar {
        padding: 55px 90px;
    }

    .navbar-left .logo {
        font-size: 80px;
        gap: 6px;
    }
}

@media (max-width: 992px) {
    .navbar {
        flex-wrap: wrap;
        padding: 25px 25px;
    }

    .navbar-left {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-right {
        display: none;
        flex-direction: column;
        align-items: center;
    }

        .navbar-right.open {
            display: flex;
            background-color: white;
            width: 100%;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
            padding: 1.5rem 1rem;
            animation: fadeInDown 0.3s ease forwards;
        }

        .navbar-right .menu {
            gap: 10px;
        }

            .navbar-right .menu li a {
                text-decoration: underline;
                font-weight: 500;
                letter-spacing: 0.03em;
                color: #2B2E34;
                transition: color 0.3s, transform 0.3s;
            }

                .navbar-right .menu li a:hover {
                    color: #F7BBB7;
                    transform: translateY(-2px);
                }

    .navbar-toggle {
        display: block;
        font-size: 2em;
        cursor: pointer;
        color: #000;
    }

    .menu {
        flex-direction: column;
        gap: 10px;
    }

        .menu li a {
            font-size: 1.2em;
        }

    .logo {
        font-size: 64px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .navbar-left .logo {
        font-size: 70px;
    }
}

/* topbar */
#topbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    z-index: 1050;
    transition: opacity 0.4s ease, transform 0.4s ease;
    font-family: 'Noto Serif Display', serif;
    padding: 0.5rem 2rem;
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    #topbar {
        padding: 0.5rem 4rem;
    }
}

@media (min-width: 1200px) {
    #topbar {
        padding: 0.5rem 10rem;
    }
}

#topbar .topbar-logo {
    max-height: 80px;
}

#topbar .nav-links li {
    list-style: none;
    margin-left: 20px;
}

#topbar .nav-links a {
    display: inline-block;
    text-decoration: underline;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: #2B2E34;
    transition: color 0.3s, transform 0.3s;
}

#mobileMenu a {
    display: block;
    text-decoration: underline;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: #2B2E34;
    transition: color 0.3s, transform 0.3s;
}

    #topbar .nav-links a:hover,
    #mobileMenu a:hover {
        color: #F7BBB7;
        transform: translateY(-2px);
    }

#topbar.show {
    display: block !important;
    animation: fadeInDown 0.3s ease forwards;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav {
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    text-align: center;
}

    .mobile-nav a {
        display: inline-block;
        margin: 10px 0;
        transition: transform 0.3s;
    }

        .mobile-nav a:hover {
            transform: translateY(-2px);
        }

/* Footer */
.footer {
    font-family: "Montserrat", sans-serif;
    padding: 3rem 2rem;
    background-color: #E9EDE7;
    height: auto;
}

.footer-container {
    display: flex;
    max-width: 1600px;
}

.footer-column {
    flex: 1 1 200px;
    color: #000;
}

    .footer-column a {
        color: #000;
        text-decoration: none;
    }

        .footer-column a:hover {
            color: #F7BBB7
        }

.center-column {
    text-align: left;
}

    .center-column a {
        margin-bottom: 20px;
    }

.social-column {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

    .social-column i {
        transition: color 0.3s;
    }

        .social-column i:hover {
            color: #555;
        }

.social-column {
    display: flex;
    gap: 1rem;
}

    .social-column a {
        background-color: #2B2E34;
        border-radius: 50%;
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: background-color 0.3s;
    }

    .social-column i {
        font-size: 2rem;
        color: #fff;
        transition: color 0.3s;
    }

    .social-column a:hover {
        background-color: #fff;
    }

        .social-column a:hover i {
            color: #F7BBB7;
        }

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .social-column {
        justify-content: center;
    }
}

/* Homepage Styles */
.section {
    position: relative;
    overflow: hidden;
    background-color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 1rem;
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.reverse {
    flex-direction: row-reverse;
}

.image-wrapper {
    flex: 1;
    position: relative;
}

.section-image {
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    z-index: 500;
}

.text-content {
    flex: 1;
    position: relative;
}

.section-title {
    font-family: 'Sonder';
    font-weight: 400;
    font-size: 4rem;
    text-decoration: none;
    margin-bottom: 1rem;
    margin-right: 1rem;
    position: relative;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-in-out;
}

.section-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    margin-right: 3rem;
    position: relative;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-in-out 0.2s;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Noto Serif Display', serif;
    text-decoration: underline;
    font-weight: 400;
    font-size: 2rem;
    color: black;
    transition: all 0.5s ease-in-out;
    position: relative;
    z-index: 1000;
    opacity: 0;
    transform: translateX(-250px);
    transition: all 0.1s ease-in-out 0.1s;
}

    .cta-button:hover {
        color: #F7BBB7;
    }

.arrow-icon {
    width: 140px;
    transition: all 0.5s ease-in-out;
    z-index: 600;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease-in-out 0.3s;
}

.section-1-bottom {
    padding: 1rem;
    text-align: center;
}

.section-1 .section-image {
    width: 90%;
    max-height: 125vh;
    object-fit: cover;
    position: relative;
    z-index: 300;
}

.center-image {
    max-width: 80%;
    max-height: 300px;
    margin: 0 auto;
    display: block;
    transform: translateX(-200px);
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    will-change: transform, opacity;
}

.section.active .center-image {
    transform: translateX(0);
    opacity: 1;
}

.section-2 .section-image {
    max-height: 125vh;
    width: 95%;
}

.section-3 .section-image {
    max-height: 130vh;
    width: 100%;
}

.section-4 .section-image {
    max-height: 130vh;
    width: 100%;
}

.section-one-right-rectangle {
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 40vh;
    transition: opacity 0.6s ease-in-out;
    z-index: 0;
}

/* Decorative elements */
.decorative-box {
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0;
    transition: all 0.8s ease-in-out;
    z-index: 1;
}

.random-image {
    position: fixed;
    right: 2rem;
    z-index: 10;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.floating-decoration {
    width: 160px;
    height: auto;
}

/* Active states for animations */
.section.active .section-title,
.section.active .section-description,
.section.active .cta-button {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.section.active .arrow-icon {
    opacity: 1;
    transform: translateX(0);
}

.section.active .decorative-box {
    opacity: 0.7;
}

.section.active .random-image {
    opacity: 0.8;
}

/* Specific decorative box positions */
.section-1 .decorative-box:nth-child(3) {
    top: 10%;
    left: 80px;
    height: 200px;
    width: 120px;
    background-color: #EBBCAB;
}

.section-1 .decorative-box:nth-child(4) {
    bottom: 20%;
    right: 100px;
    height: 180px;
    width: 180px;
    background-color: #E2D5C5;
}

.section-2 .decorative-box:nth-child(3) {
    top: 30%;
    left: 10%;
    height: 250px;
    width: 100px;
    background-color: #E2D5C5;
}

.section-2 .decorative-box:nth-child(4) {
    bottom: 15%;
    right: 15%;
    height: 150px;
    width: 150px;
    background-color: #5D8B8D;
}

.section-3 .decorative-box:nth-child(3) {
    top: 20%;
    right: 5%;
    height: 220px;
    width: 80px;
    background-color: #945D46;
}

.section-3 .decorative-box:nth-child(4) {
    bottom: 25%;
    left: 10%;
    height: 170px;
    width: 170px;
    background-color: #EBBCAB;
}

.section-4 .decorative-box:nth-child(3) {
    top: 15%;
    right: 20%;
    height: 190px;
    width: 90px;
    background-color: #DFE2BA;
}

.section-4 .decorative-box:nth-child(4) {
    bottom: 30%;
    left: 15%;
    height: 160px;
    width: 160px;
    background-color: #5D8B8D;
}

/* Breakpoint 1200px */
@media (max-width: 1200px) {
    .section-title {
        font-size: 3.5rem;
        line-height: 1.2;
    }

    .section-description {
        font-size: 1.1rem;
        margin-right: 2rem;
    }

    .cta-button {
        font-size: 1.8rem;
    }

    .content-wrapper {
        gap: 3rem;
    }

    .section-image {
        width: 85%;
    }
}

/* Breakpoint 992px */
@media (max-width: 992px) {
    .section-title {
        font-size: 3rem;
        margin-bottom: 0.8rem;
    }

    .section-description {
        font-size: 1rem;
        margin-right: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        font-size: 1.6rem;
    }

    .arrow-icon {
        width: 120px;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

        .content-wrapper.reverse {
            flex-direction: column;
        }

    .image-wrapper,
    .text-content {
        width: 100%;
    }

    .section-1 .section-image {
        width: auto;
        max-height: 50vh;
    }

    .section-2 .section-image {
        width: auto;
        max-height: 50vh;
    }

    .section-3 .section-image {
        max-width: fit-content;
        max-height: 50vh;
    }

    .section-4 .section-image {
        width: auto;
        max-height: 80vh;
    }

    .decorative-box {
        display: none;
    }

    .section {
        padding: 3rem 0;
    }
}

/* Breakpoint 768px */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-right: 0;
    }

    .section-description {
        margin-right: 0;
    }

    .cta-button {
        font-size: 1.4rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .arrow-icon {
        width: 100px;
    }

    .container {
        padding: 0 1.7rem;
    }

    .section-1-bottom {
        padding: 2rem 0;
    }

    .center-image {
        max-width: 95%;
    }

    .random-image {
        display: none;
    }

    p {
        font-size: 1rem;
    }

    .section-one-right-rectangle {
        width: 30px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    .cta-button {
        font-size: 1.2rem;
    }

    .arrow-icon {
        width: 80px;
    }
}

/* About Page */
.section-pink-bottom {
    padding: 3rem 7rem;
    text-align: center;
    letter-spacing: 0.04em;
    line-height: 2;
}

.pink-section {
    font-family: 'Noto Serif Display', serif;
    font-weight: 500;
    font-size: 1.4rem;
    font-style: italic;
    display: contents;
}

/* Team Section Styles */
.section-team {
    background-color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.team-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.member-image-container {
    position: relative;
    margin-bottom: 1.5rem;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 30%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-name {
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.member-position {
    font-family: "Montserrat", sans-serif;
    color: #666;
    font-size: 0.9rem;
}

/* Hover Effects */
.team-member:hover .member-image {
    transform: scale(1.05);
}

.team-member:hover .member-overlay {
    opacity: 1;
}

/* Animations */
.section-team.active .team-member {
    opacity: 1;
    transform: translateY(0);
}

    .section-team.active .team-member:nth-child(1) {
        transition-delay: 0.1s;
    }

    .section-team.active .team-member:nth-child(2) {
        transition-delay: 0.2s;
    }

    .section-team.active .team-member:nth-child(3) {
        transition-delay: 0.3s;
    }

    .section-team.active .team-member:nth-child(4) {
        transition-delay: 0.4s;
    }

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .pink-section {
        font-size: 1rem;
        padding: 0 1rem;
        line-height: 1.4;
    }

    .section-pink-bottom {
        padding: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .team-member {
        margin-bottom: 2rem;
    }

    .section-team {
        padding: 3rem 0;
    }
}

/* Fancy Section Styles */
.section-fancy {
    background-color: #e6e6e6;
    position: relative;
    overflow: hidden;
    padding: 0 5rem;
}

.fancy-content-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.fancy-text-content {
    flex: 1;
    position: relative;
    z-index: 10;
}

.fancy-images-container {
    flex: 1;
    position: relative;
    min-height: 500px;
}

.fancy-main-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.fancy-main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.fancy-overlay-image-wrapper {
    position: absolute;
    top: 40%;
    left: 0;
    width: 60%;
    transform: translateY(-50%);
    z-index: 10;
    transition: all 0.5s ease;
    overflow: hidden;
}

.fancy-overlay-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.fancy-overlay-image-wrapper:hover {
    transform: translateY(-50%) scale(1.05);
}

    .fancy-overlay-image-wrapper:hover .fancy-overlay-image {
        transform: scale(1.1);
    }

.fancy-rotating-image-wrapper {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 30%;
    z-index: 3;
    border-radius: 50%;
    overflow: hidden;
    transform: rotate(0deg);
    transition: transform 2s ease-out;
}

.fancy-rotating-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Animations */
.section-fancy.active .fancy-rotating-image-wrapper {
    transform: rotate(360deg);
}

@media (max-width: 1200px) {
    .fancy-content-wrapper {
        gap: 3rem;
    }

    .fancy-images-container {
        min-height: 450px;
    }
}

@media (max-width: 992px) {
    .fancy-content-wrapper {
        flex-direction: column;
    }

    .fancy-images-container {
        width: 100%;
        min-height: 400px;
        margin-top: 3rem;
    }

    .fancy-overlay-image-wrapper {
        left: 5%;
        width: 50%;
    }
}

@media (max-width: 768px) {
    .section-fancy {
        padding: 2rem;
    }

    .fancy-images-container {
        min-height: 350px;
    }

    .fancy-overlay-image-wrapper {
        width: 60%;
    }

    .fancy-rotating-image-wrapper {
        width: 35%;
    }
}

.section-map {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .section-map {
        height: 80vh;
    }
}

/* Perfume Section Styles */
.section-perfumes {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.perfume-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(135deg, rgb(247 187 183 / 99%) 0%, #ffa0aa 50%, rgb(255 108 175 / 20%) 100%);
}

.perfume-content-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 5rem 0;
}

.perfume-text-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.perfume-images-container {
    flex: 1;
    position: relative;
    min-height: 500px;
}

.perfume-main-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    top: 60%;
    left: 10%;
}

.perfume-main-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease-out;
}

.perfume-middle-image-wrapper {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 60%;
    z-index: 2;
    transition: transform 0.8s ease-out;
}

.perfume-middle-image {
    width: 100%;
    height: auto;
    display: block;
}

.perfume-top-image-wrapper {
    position: absolute;
    top: 40%;
    right: -30%;
    width: 100%;
    z-index: 3;
    transition: transform 0.6s ease-out;
}

.perfume-top-image {
    width: 100%;
    display: block;
}

.perfume-bottom-bg {
    width: 100%;
    height: 50%;
    position: relative;
    overflow: hidden;
}

.perfume-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Animations */
.section-perfumes.active .perfume-main-image {
    transform: translateX(10px);
}

.section-perfumes.active .perfume-middle-image-wrapper {
    transform: translateX(-50px) translateY(-20px);
}

.section-perfumes.active .perfume-top-image-wrapper {
    transform: translateX(-30px) translateY(10px);
}

@media (max-width: 1200px) {
    .perfume-content-wrapper {
        gap: 3rem;
    }

    .perfume-images-container {
        min-height: 450px;
    }
}

@media (max-width: 992px) {
    .perfume-content-wrapper {
        flex-direction: column;
    }

    .perfume-images-container {
        width: 100%;
        min-height: 400px;
        margin-top: 3rem;
    }

    .perfume-middle-image-wrapper {
        left: -5%;
    }
}

@media (max-width: 768px) {
    .perfume-content-wrapper {
        padding: 3rem 0;
    }
}

/* Contact Modal Styles */
.modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.modal-pink-bar {
    height: 8px;
    width: 100%;
    background: linear-gradient(90deg, #F7BBB7 0%, #EBBCAB 50%, #DFE2BA 100%);
}

.btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1060;
}

    .btn-close:hover {
        opacity: 1;
    }

.modal-title {
    font-family: 'Noto Serif Display', serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        font-family: "Montserrat", sans-serif;
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
        color: #555;
    }

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: "Montserrat", sans-serif;
    transition: border-color 0.3s ease;
}

    .form-control:focus {
        border-color: #F7BBB7;
        outline: none;
        box-shadow: 0 0 0 3px rgba(247, 187, 183, 0.2);
    }

.error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    font-family: "Montserrat", sans-serif;
}

.form-check {
    margin: 1.5rem 0;
}

.form-check-label {
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    color: #555;
    margin-left: 0.5rem;
}

.submit-button {
    background: none;
    border: none;
    padding: 0;
    font-family: 'Noto Serif Display', serif;
    font-size: 1.5rem;
    color: #000;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
    display: block;
    margin: 2rem auto 0;
}

    .submit-button:hover {
        color: #F7BBB7;
    }

/* Response Modal */
#responseModal .modal-content {
    text-align: center;
    padding: 2rem;
}

#responseMessage {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
}

/* Animations */
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out, opacity 0.3s ease;
    transform: translateY(-50px);
    opacity: 0;
}

.modal.show .modal-dialog {
    transform: translateY(0);
    opacity: 1;
}

<!-- Error Styles -->
.section-error {
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    background-color: white;
}

.error-content {
    max-width: 800px;
    margin: 0 auto;
}

.error-title {
    font-family: 'Noto Serif Display', serif;
    font-size: 8rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1;
}

.error-subtitle {
    font-family: 'Noto Serif Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 1.5rem;
}

.error-description {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .error-title {
        font-size: 5rem;
    }

    .error-subtitle {
        font-size: 1.8rem;
    }
}

/* Events Section Styles */
.section-events {
    background-color: white;
    padding: 5rem 0;
    position: relative;
}

.featured-event {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.featured-event-content {
    flex: 1;
}

.featured-event-image {
    flex: 1;
}

    .featured-event-image img {
        width: 100%;
        height: auto;
        max-height: 500px;
        object-fit: cover;
    }

.event-category {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.event-title {
    font-family: 'Noto Serif Display';
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #333;
}

.event-meta {
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
}

.event-description {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

/* Events Grid */
.section-events-grid {
    background-color: #F9F9F9;
    padding: 5rem 0;
    position: relative;
}

.section-subtitle {
    font-family: 'Noto Serif Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.event-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .event-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

.event-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

    .event-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.event-card:hover .event-card-image img {
    transform: scale(1.05);
}

.event-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: #333;
}

.event-card-content {
    padding: 1.5rem;
}

.event-card-title {
    font-family: 'Noto Serif Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 1rem 0 0.5rem 0;
    color: #333;
}

.event-card-meta {
    font-family: "Montserrat", sans-serif;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
}

.event-card-description {
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.event-read-more {
    display: inline-flex;
    align-items: center;
    font-family: 'Noto Serif Display', serif;
    font-size: 1.1rem;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .event-read-more:hover {
        color: #F7BBB7;
    }

.arrow-icon-small {
    width: 80px;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.event-read-more:hover .arrow-icon-small {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .featured-event {
        flex-direction: column;
    }

    .featured-event-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 2rem;
    }
}

/* Single Post Styles */
.section-single-post {
    background-color: white;
    padding: 5rem 0;
    position: relative;
}

.single-post-container {
    max-width: 900px;
    margin: 0 auto;
}

.post-header {
    margin-bottom: 3rem;
    text-align: center;
}

.post-title {
    font-family: 'Noto Serif Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #333;
    margin: 1rem 0;
    line-height: 1.2;
}

.post-meta {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    color: #666;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.post-image-wrapper {
    margin: 3rem 0;
}

.post-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.post-content {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin: 4rem 0;
}

    .post-content p {
        margin-bottom: 1.5rem;
    }

.author-info {
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    color: #666;
    text-align: right;
    margin: 3rem 0;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.post-footer {
    text-align: center;
    margin-top: 4rem;
}

@media (max-width: 992px) {
    .post-title {
        font-size: 2.5rem;
    }

    .post-content {
        font-size: 1rem;
        margin: 3rem 0;
    }
}

@media (max-width: 768px) {
    .post-title {
        font-size: 2rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .section-single-post {
        padding: 3rem 0;
    }
}
