/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&family=Inter:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Cormorant+Garamond:wght@400;500&family=EB+Garamond:ital@1&family=Cinzel:wght@600&display=swap');

/* Import Tropikal font */
@font-face {
    font-family: 'Tropikal';
    src: url('fonts/Tropikal.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Kepler';
    src: url('fonts/Kepler.otf') format('opentype'); /* Update file name if needed */
    font-weight: normal;
    font-style: normal;
}

/* Reset default margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full height for body and html */
body, html {
    width: 100%;
    height: 100%;
    font-family: 'Marcellus', serif;
    scroll-behavior: smooth;
}

/* Fade-in effect */
.fade-in-element {
    opacity: 0; /* Make it invisible initially */
    transform: translateY(20px); /* Start slightly below the normal position */
    transition: opacity 1s ease, transform 1s ease; /* Smooth transition for fade and movement */
}

.fade-in-element.visible {
    opacity: 1; /* Make it visible when the class is added */
    transform: translateY(0); /* Move to the normal position */
}

/* Default state - initially the body is invisible */
body {
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Duration of the fade-in effect */
    background-color: #b5b4b4; /* Light gray background */
    color: #333; /* Dark text color for better readability */
}

/* When the 'loaded' class is added, the opacity will be set to 1 */
body.loaded {
    opacity: 1;
}

/* Hero Section Layout */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Video Background */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text Overlay */
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

/* Tropikal font for main title */
.tropikal-font {
    font-family: 'Tropikal', serif;
    font-size: 6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
    animation-delay: 0.4s;
    text-shadow:
        4px 4px 15px rgba(0, 0, 0, 0.85),
        2px 2px 10px rgba(0, 0, 0, 0.7),
        0 0 5px rgba(0, 0, 0, 0.5);
}

.subtext {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 1.4rem;
    text-transform: none;
    color: white;
    margin-top: 0.5rem;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1s;
    text-shadow:
        3px 3px 12px rgba(0, 0, 0, 0.85),
        1px 1px 6px rgba(0, 0, 0, 0.6),
        0 0 4px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-family: 'Marcellus', serif;
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    color: white;
    margin-top: 0.1rem;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeIn 2s ease forwards;
    animation-delay: 2.2s;
    text-shadow:
        4px 4px 20px rgba(0, 0, 0, 0.9),
        0 0 10px rgba(0, 0, 0, 0.85),
        0 0 6px rgba(0, 0, 0, 0.8);
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Fade-in effect */
.fade-in-element {
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .fade-in-element.visible {
    opacity: 1;
  }
  
:root {
    --dark-green: #093C34;
    --teal: #447C74;
    --light-cream: #F3E2C4;
    --golden-yellow: #c9a558; /* Added golden yellow for hover effects */
}

/* Navbar Styling - Updated for requirements */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 11vh;
    background-color: transparent; /* Start transparent */
    display: flex;
    justify-content: space-between; /* Changed to space-between for better spacing */
    align-items: center;
    padding: 0.8rem 2rem;
    z-index: 1000;
    transition: all 0.3s ease; /* Smooth transition */
}

/* Blurred navbar for video sections - Updated opacity and blur strength */
.navbar.blurred {
    background-color: rgba(255, 255, 255, 0.15); /* More subtle background */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Navbar background for split section */
.navbar.scrolled {
    background-color: var(--light-cream); /* Solid light cream */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Navigation Links - Fixed color values */
.nav-links {
    display: flex;
    gap: 2rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: var(--light-cream); /* Default light cream color for all states */
    font-weight: 500;
    transition: color 0.3s ease, transform 0.2s ease;
}

/* Navbar links - darker color when scrolled */
.navbar.scrolled .nav-links a {
    color: var(--dark-green);
}

/* Enhanced hover effect for navigation links */
.nav-links a:hover {
    color: var(--golden-yellow); /* Golden yellow on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

/* Underline effect on hover */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--golden-yellow); /* Changed to golden yellow */
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%; /* Expand underline on hover */
}

/* Logo Styling */
.logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2rem;
    font-weight: bold;
    color: var(--light-cream); /* Changed to light cream */
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

.navbar.scrolled .logo {
    color: var(--dark-green); /* Dark green when scrolled */
}

/* Logo container and image */
.logo-container {
    display: flex;
    align-items: center;
}

.logo img {
    width: 35px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.logo img:hover {
    transform: scale(1.1);
}

/* Mobile Menu Button */
.menu-btn {
    font-size: 2rem;
    color: var(--light-cream);
    cursor: pointer;
    display: none;
 transition: color 0.3s ease;
}

.navbar.scrolled .menu-btn {
    color: var(--dark-green);
}

/* Mobile Menu Improvements */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: var(--dark-green);
        position: fixed;
        top: 11vh;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100vh - 11vh);
        text-align: center;
        padding: 2rem;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a {
        color: var(--light-cream);
        padding: 1.2rem 0;
        font-size: 1.3rem;
        border-bottom: 1px solid rgba(243, 226, 196, 0.2);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .menu-btn {
        display: block;
        font-size: 2.5rem;
        transition: transform 0.3s ease;
    }

    .menu-btn:hover {
        transform: scale(1.1);
    }
}

/* Split Section Below Video */
.split-section {
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: var(--light-cream);
    padding-top: 4rem;
    padding-bottom: 3rem;
    gap: 2rem;
}

.split-image,
.split-text {
    flex: 1;
    min-width: 300px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-image {
    background-color: var(--light-cream);
    overflow: hidden;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.split-image img {
    width: 100%;
    max-height: 80vh;
    height: auto;
    object-fit: cover;
    border-radius: 150px;
}

.split-text {
    background-color: var(--light-cream);
    color: var(--dark-green);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Marcellus', serif;
}

.split-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    max-width: 600px;
}

.hero-button {
    padding: 0.75rem 2rem;
    background-color: var(--teal);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: #2c5f58;
}

/* Quote-over-Video Section */
.quote-video-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.quote-video-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.quote-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
    padding: 0 1rem;
}

.quote-source {
    font-family: 'Marcellus', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-text {
    font-family: 'Cinzel Decorative', serif;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.3;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.6);
}

/* Responsive quote text */
@media (max-width: 768px) {
    .quote-text {
        font-size: 2rem;
    }
}
.quote-button {
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border: 1px solid white;
    border-radius: 999px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.quote-button:hover {
    background-color: white;
    color: black;
    border-color: white;
}

/* User review */
#review-slider::-webkit-scrollbar {
    display: none;
}

.dot:hover {
    transform: scale(1.2);
    transition: transform 0.2s ease;
}

.carousel-wrapper {
    position: relative;
    padding-left: 4rem;
    padding-right: 4rem;
}

/* Arrow Buttons */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    padding: 0.5rem;
    border-radius: 9999px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: background-color 0.3s ease;
}

.carousel-arrow:hover {
    background-color: #fbd086;
}

.carousel-arrow.left {
    left: -2rem;
}

.carousel-arrow.right {
    right: -2rem;
}

@media (max-width: 768px) {
    .carousel-arrow.left {
        left: -1rem;
    }

    .carousel-arrow.right {
        right: -1rem;
    }
}

/* Centered nav links during video section */
.video-section-active .nav-links {
    justify-content: center;
    width: 100%;
}

.subpage-overlay {
    position: absolute;
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
}

.subpage-title {
    font-family: 'Tropikal', serif;
    font-size: 7vw !important;
    font-weight: thin;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 5px;
}

.subpage-subtext {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.subpage-subtext {
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

.scroll-down-btn {
    margin-top: 3rem;
    padding: 0.75rem 3rem;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border: 1px solid white;
    border-radius: 999px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.scroll-down-btn:hover {
    background-color: rgba(255, 255, 255, 1);
    color: black;
}

/* Expanded nav bar after scrolling past video */
.scrolled .navbar {
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile menu enhancements */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding-top: 80px;
    transition: right 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    display: block;
    padding: 15px 25px;
    color: #093C34;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s;
}

.mobile-menu a:hover {
    background-color: #f5f5f5;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #093C34;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Takeout subpage */
#menu-items > div {
    scroll-margin-top: 10px;
}

/* Add smooth scroll behavior inside the menu list */
#menu-items {
    scroll-behavior: smooth;
}
/* Additional styles for the footer */
.footer-new {
    background-color: var(--dark-green);
    color: var(--light-cream);
    padding: 4rem 2rem 1rem;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.footer-heading {
    color: var(--golden-yellow);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--golden-yellow);
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
}

.footer-links-list a {
    color: var(--light-cream);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: var(--golden-yellow);
    transform: translateX(5px);
}

.footer-hours {
    list-style: none;
    padding: 0;
}

.footer-hours li {
    margin-bottom: 0.8rem;
    display: flex;
    flex-direction: column;
}

.day {
    font-weight: 600;
    color: #fff;
}

/* Fixed Footer Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(243, 226, 196, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--golden-yellow);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.social-icon:hover::before {
    transform: scale(1);
}

.social-icon img {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* Add contact button styling */
.contact-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--golden-yellow);
    color: var(--dark-green);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-btn:hover {
    background-color: #fff;
    transform: translateY(-3px);
}

/* Footer bottom styling */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(243, 226, 196, 0.2);
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 2rem;
    }
}

/* FAQ Accordion Styles for Contact Page */
.faq-container {
    max-width: 800px;
    margin: 2rem auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background-color: var(--teal);
    color: white;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #386961; /* Slightly lighter teal on hover */
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    background-color: white;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px; /* Adjust based on expected content height */
}

.faq-answer p {
    color: var(--dark-green);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Contact Form Styles */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    margin-bottom: 0.5rem;
    color: var(--dark-green);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.form-input,
.form-textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--teal);
    outline: none;
    box-shadow: 0 0 0 2px rgba(68, 124, 116, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    grid-column: span 2;
    padding: 0.75rem 1.5rem;
    background-color: var(--teal);
    color: white;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-self: center;
    width: 200px;
}

.form-submit:hover {
    background-color: #386961;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Gallery Section Styles */
.gallery-section {
    padding: 5rem 2rem;
    background-color: var(--light-cream);
}

.gallery-heading {
    text-align: center;
    font-family: 'Marcellus', serif;
    color: var(--dark-green);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    font-family: 'Marcellus', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Modal for Gallery Images */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.gallery-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-image {
    max-width: 100%;
    max-height: 90vh;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    color: white;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

/* Testimonial Section - Additional Styling */
.testimonial-section {
    padding: 5rem 2rem;
    background-color: white;
}

.testimonial-heading {
    text-align: center;
    font-family: 'Marcellus', serif;
    color: var(--dark-green);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 1rem;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 350px;
}

.testimonial-quote {
    color: var(--golden-yellow);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author {
    font-family: 'Marcellus', serif;
    color: var(--dark-green);
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-role {
    font-family: 'Inter', sans-serif;
    color: #777;
    font-size: 0.9rem;
}

/* Newsletter Form */
.newsletter-section {
    padding: 3rem 2rem;
    background-color: var(--teal);
    color: white;
    text-align: center;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-heading {
    font-family: 'Marcellus', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.newsletter-button {
    padding: 0.75rem 1.5rem;
    background-color: var(--dark-green);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background-color: #0c4e43;
}

.newsletter-privacy {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--dark-green);
    transform: translateY(-5px);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.slide-up {
    animation: slideUp 1s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 1s ease forwards;
}

.slide-in-right {
    animation: slideInRight 1s ease forwards;
}

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

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

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

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    .split-section {
        flex-direction: column;
    }
    
    .split-image img {
        max-height: 60vh;
        border-radius: 100px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .form-submit {
        grid-column: span 1;
    }
    
    .tropikal-font {
        font-size: 4rem;
    }
    
    .subtext {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .tropikal-font {
        font-size: 3rem;
    }
    
    .subtext {
        font-size: 1rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .quote-text {
        font-size: 1.6rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .carousel-wrapper {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-green);
}

/* === Elegant Typography Updates === */

/* Our Roots Section */
.split-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.split-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 600px;
    color: #2d2d2d;
}

/* Review Section */
.carousel-wrapper .italic {
    font-family: 'EB Garamond', serif;
    font-size: 1.2rem;
    color: #3b3b3b;
    line-height: 1.7;
    font-style: italic;
}

.carousel-wrapper .font-semibold {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--dark-green);
}

/* Font for 'What Our Customers Are Saying' heading */
.carousel-wrapper h2 {
    font-family: 'Cinzel', serif; /* or 'Playfair Display', serif for a softer look */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === Elegant Fonts for Menu Page === */

/* Section headers like Appetizers, Salads, etc. */
section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.4rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }
  
  /* Menu item names */
  .menu-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  /* Menu descriptions */
  .menu-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
  }
  
  /* Prices */
  .menu-card p.font-bold {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--dark-green);
  }

  /* priv policy and terms and conditions */
  /* MODAL STYLING */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .modal.hidden {
    display: none;
  }
  
  .modal-content {
    background: white;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    border-radius: 12px;
    position: relative;
    font-family: 'Inter', sans-serif;
    color: #093C34;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease;
  }
  
  .modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    color: #888;
  }
  
  .modal-close:hover {
    color: #c9a558;
  }
  
