body {
    font-family: Georgia;
    margin: 0;
    background-color: #FFD3AC; /* Set the background color of the page */
    color: #331C08; /* Set the default text color */
    line-height: 1.6;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: #FFD3AC;
    transition: color 0.3s ease;
}

/* Header */
/* Header */
.site-header {
    position: sticky;
    top: 0;
    background-color: #664C36;
    padding: 1em 2em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    flex-wrap: nowrap; /* Important: Prevent wrapping */
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}


/* Site Identity */
.site-identity h1 {
    font-size: clamp(1.2rem, 4vw, 2.5rem);
    color: #FFD3AC;
    margin: 0;
}


/* Navigation */
.site-navigation ul {
    list-style: none;
    display: flex;
    gap: 2.5em;
}

.site-navigation li {
    position: relative;
}

.site-navigation li::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: #06c1db;
    transition: width .3s ease;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.site-navigation li:hover::after {
    width: 100%;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.burger .bar {
    width: 25px;
    height: 3px;
    background-color: #FFD3AC;
    transition: all 0.3s ease;
}

/* Animate to X */
.burger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active .bar:nth-child(2) {
    opacity: 0;
}

.burger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .site-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #664C36;
        padding-bottom: 1em;
    }

    .site-navigation.active {
        display: block;
    }

    .site-navigation ul {
        flex-direction: column;
        text-align: center;
    }

    .site-navigation li {
        padding: 1em 0;
        border-top: 1px solid #FFD3AC;
    }
}


/* Glassmorphism Effect */
.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glassmorphism:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Contact Form Section */
.contact-form-section {
    padding: 4em 2em;
    text-align: center;
    margin: 2em auto;
    max-width: 800px;
    animation: slideIn 1s ease-in-out;
}

.contact-form-section h2 {
    font-size: 2em;
    color: #664C36;
    margin-bottom: 1em;
}

.contact-form-section p {
    font-size: 1.1em;
    color: #331C08;
    margin-bottom: 2em;
}

.contact-form-section form {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.contact-form-section label {
    font-size: 1em;
    color: #331C08;
}

.contact-form-section input,
.contact-form-section textarea {
    padding: 0.75em;
    border: 1px solid #664C36;
    border-radius: 8px;
    font-size: 1em;
    color: #331C08;
    background-color: #FFF;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form-section input:focus,
.contact-form-section textarea:focus {
    outline: none;
    border-color: #06c1db;
    box-shadow: 0 0 8px rgba(6, 193, 219, 0.3);
}

.contact-form-section button {
    padding: 1em 2.5em;
    border: none;
    border-radius: 50px;
    background-color: #664C36;
    color: #FFD3AC;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-form-section button:hover {
    background-color: #331C08;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(102, 76, 54, 0.3);
}

/* Date and Time Container */
.date-time-container {
    display: flex;
    gap: 1em;
}

.date-time-container div {
    flex: 1;
}

/* FAQ Section */
.faq-section {
    padding: 4em 2em;
    margin: 2em auto;
    max-width: 800px;
    animation: slideIn 1s ease-in-out;
}

.faq-section h2 {
    font-size: 2em;
    color: #664C36;
    margin-bottom: 1em;
    text-align: center;
}

.faq {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.faq-question {
    background-color: #FFD3AC;
    padding: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    list-style-type: disc;
    list-style-position: inside;
}

.faq-question:hover {
    background-color: #664C36;
    color: #FFD3AC;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1em;
    border-left: 2px solid #664C36;
    margin-top: 0.5em;
    animation: typing 2s steps(40, end);
}

.faq-answer p {
    margin: 0;
    padding: 1em 0;
    color: #331C08;
}

/* Footer */
.contact-footer {
    padding: 2em;
    text-align: center;
    background-color: #664C36;
    color: #FFD3AC;
    border-top: 1px solid #331C08;
}

.contact-footer a {
    margin: 0 1em;
    color: #FFD3AC;
    transition: color 0.3s;
}

.contact-footer a:hover {
    color: #CCBEB1;
}

.contact-footer img {
    width: 30px;
    height: 30px;
    margin: 0 0.5em;
}

.contact-footer p {
    margin: 1em 0 0;
    font-size: 0.9em;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .site-header {
        align-items: flex-start;
    }

    .site-navigation ul {
        flex-direction: column;
        gap: 0.5em;
    }

    .contact-form-section,
    .faq-section {
        padding: 2em 1em;
        margin: 1em auto;
    }

    .date-time-container {
        flex-direction: column;
    }
}



/* Footer */
/* Footer */
.site-footer {
    text-align: center;
    padding: 2em;
    background-color: #664C36;
    color: #FFD3AC;
    border-top: 1px solid #331C08;
}

.site-footer h2 {
    font-family: Georgia;
    margin-bottom: 1em;
    text-align: center;
    position: relative;
}

.site-footer h2::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #06c1db;
    transition: width .3s;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.site-footer h2:hover::after {
    width: 100%;
}

.site-footer a {
    margin: 0 1em;
    color: #FFD3AC;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: #CCBEB1;
}

.site-footer img {
    width: 30px;
    height: 30px;
    margin: 0 0.5em;
    /* mix-blend-mode:multiply; /* Apply blend mode to the image */
    /*filter: brightness(1) invert(1); Invert the image color */
}

.site-footer p {
    margin: 1em 0 0;
    font-size: 0.9em;
}