/* ===== CSS Variables ===== */
:root {
    --navy-dark: #0a0e27;
    --navy-medium: #141b3d;
    --orange-primary: #ff5722;
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.9);
    --border-white: rgba(255, 255, 255, 0.2);
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    background: var(--navy-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Navigation ===== */
/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #0a0e27;
    height: 90px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
    position: relative;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-right {
    justify-content: flex-end;
}

.nav-center {
    display: flex;
    justify-content: center;
    position: static;
}

.navbar a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar a:not(.logo):not(.btn-book):hover {
    color: var(--orange-primary);
}

.logo {
    position: absolute;
    left: 50%;
    top: 85%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.btn-book {
    border: 1px solid var(--text-white);
    padding: 0.8rem 2rem;
    border-radius: 0;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-book:hover {
    background: var(--text-white);
    color: var(--navy-dark);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 8rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 14, 39, 0.6), rgba(10, 14, 39, 0.8));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    width: 100%;
    max-width: 1400px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: clamp(2.1rem, 5.1vw, 3.8rem);
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 1.2;
    margin-bottom: 1.7rem;
    color: var(--text-white);
}

.hero-content p {
    font-size: clamp(0.8rem, 1.3vw, 0.95rem);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-buttons a{
    text-decoration: none;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Josefin Sans', sans-serif;
}

.btn-primary {
    background: var(--orange-primary);
    color: var(--text-white);
    border: 2px solid var(--orange-primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--orange-primary);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--navy-dark);
    transform: translateY(-2px);
}

/* ===== Features Section ===== */
.features {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    padding: 0 2rem 4rem;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.feature-card {
    background: rgba(20, 27, 61, 0.6);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    background: rgba(20, 27, 61, 0.9);
    transform: translateY(-5px);
    border-color: rgba(255, 87, 34, 0.3);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255, 87, 34, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.3) 0%, transparent 70%);
}

.feature-card:hover .feature-icon {
    background: rgba(255, 87, 34, 0.25);
    transform: scale(1.05);
}

.feature-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(346deg) brightness(104%) contrast(97%);
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--text-white);
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

/* ===== Occasions Section ===== */
.occasions {
    background: linear-gradient(180deg, #0a0e27 0%, #141b3d 100%);
    padding: 5rem 2rem;
}

.occasions-container {
    max-width: 1280px;
    margin: 0 auto;
}

.occasions-title {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.occasions-title .highlight {
    color: #ff5722;
    font-weight: 500;
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.occasion-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16/10;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.occasion-card:hover {
    transform: translateY(-5px);
}

.occasion-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.occasion-card:hover img {
    transform: scale(1.05);
}

.occasion-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    color: #ffffff;
}

.occasion-overlay h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.occasion-overlay p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== Venue Section ===== */

.venue {
    background: linear-gradient(180deg, #0a0e27 0%, #141b3d 100%);
    padding: 5rem 2rem;
}

.venue-container {
    max-width: 1280px;
    margin: 0 auto;
}

.venue-title {
    font-size: 2.5rem;
    font-weight: 400;
    /*text-align: center;*/
    color: #ffffff;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.venue-title .highlight {
    color: #ff5722;
    font-weight: 500;
}

.venue-content {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: center;
}

.venue-image {
    position: relative;
    overflow: hidden;
    /*border-radius: 12px;*/
}

.venue-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.venue-image video{
    width: 100%;
    height: auto;
    display: table;
    margin: 0 auto;
    border-radius: 12px;
}

.venue-image:hover img {
    transform: scale(1.05);
}

.venue-text {
    color: #ffffff;
}

.venue-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.venue-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.venue-features li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.venue-features li::before {
    content: '○';
    position: absolute;
    left: 0;
    color: #ff5722;
    font-size: 1.2rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.9rem 2.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-outline:hover {
    background: #ffffff;
    color: #141b3d;
}

/* ===== Everything You Need Section ===== */
.everything-section {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    /* overflow: hidden; Removed to allow card offset */
    padding: 4rem 2rem;
    margin-bottom: 12em;
}

.everything-background {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 100%;
    z-index: 0;
    border-radius: 40px;
    overflow: hidden;
}

.everything-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.everything-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.4);
}

.everything-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.everything-card {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(60, 60, 60, 0.5) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(12rem);
}

.everything-card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 5rem 4rem;
    align-items: center;
}

.everything-left {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.everything-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.2;
    color: var(--text-white);
    text-transform: uppercase;
}

.everything-title .highlight {
    color: var(--orange-primary);
    font-weight: 600;
    display: block;
    margin-top: 0.5rem;
}

.btn-outline-white {
    background: transparent;
    border: 1px solid var(--text-white);
    color: var(--text-white);
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    text-transform: uppercase;
    align-self: flex-start;
    text-decoration: none;
}

.btn-outline-white:hover {
    background: var(--text-white);
    color: var(--navy-dark);
}

.everything-right {
    /* Styles removed as they are now handled by the card */
}

.everything-features {
    color: var(--text-white);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.features-list li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

.features-list li::before {
    content: '○';
    position: absolute;
    left: 0;
    color: #ff5722;
    /* Ensuring orange color matches image */
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.5;
}

.features-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 900px) {
    .everything-card-content {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 2rem;
        text-align: center;
    }

    .everything-left {
        align-items: center;
    }

    .btn-outline-white {
        align-self: center;
    }

    .features-list li {
        text-align: left;
        display: inline-block;
    }

    .features-list {
        text-align: left;
    }
}

/* ===== Responsive Design ===== */
/* Feedback Section */
.feedback {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #0a0e27 0%, #141b3d 100%);
    position: relative;
    overflow: hidden;
}

.feedback-container {
    max-width: 1280px;
    margin: 0 auto;
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.feedback-title {
    font-size: 2.5rem;
    margin-bottom: 0;
}

.carousel-controls {
    display: flex;
    gap: 1rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 87, 34, 0.3);
    background: transparent;
    color: var(--primary-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary-accent);
    color: white;
    transform: scale(1.1);
}

.carousel-btn.active {
    background: var(--primary-accent);
    color: white;
}

.carousel-wrapper {
    overflow: hidden;
    padding: 1rem 0;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-out;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    background: rgba(20, 27, 61, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 87, 34, 0.3);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

/* Colors for specific avatars to match design variants */
.testimonial-card:nth-child(1) .user-avatar {
    background: #5D4037;
}

/* Warm brown/red */
.testimonial-card:nth-child(2) .user-avatar {
    background: #3E2723;
}

/* Dark brown */
.testimonial-card:nth-child(3) .user-avatar {
    background: #4a3434;
}

/* Muted red */

.user-name {
    font-size: 1.1rem;
    font-weight: 500;
}

.testimonial-text {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    flex-grow: 1;
}

.star-rating {
    display: flex;
    gap: 0.2rem;
    color: #ffb700;
    font-size: 1.2rem;
}

/* Booking Section */
.booking {
    padding: 6rem 2rem;
    background: #0a0e27;
    position: relative;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: white;
    line-height: 1.3;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.form-section-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.form-group.full-width {
    grid-column: span 2;
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
    background: rgba(255, 255, 255, 0.08);
}

.form-action {
    display: flex;
    justify-content: center;
}



/* ===== Footer Section ===== */
.footer {
    background: #05081a;
    color: #ffffff;
    padding: 5rem 0 0;
    font-size: 0.95rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo img {
    height: 80px;
    width: auto;
    display: block;
}

.footer-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--orange-primary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--orange-primary);
}

.footer-contact .icon {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.footer-bottom {
    background: #3e2723;
    /* Dark brown color from design */
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: white;
    color: #3e2723;
    transform: translateY(-3px);
    border-color: white;
}

.social-icons svg {
    width: 18px;
    height: 18px;
}

.footer-legal {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin: 0 0.2rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .social-icons {
        margin: 0.5rem 0;
    }
}



.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
}

.form-group select option {
    background: #0a0e27;
    color: white;
}

.input-with-icon {
    position: relative;
}

.input-with-icon .icon {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 1.2rem;
    opacity: 0.7;
}

.btn-block {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 1rem;
}

/* Instagram Feed Section */
.insta-feed {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.insta-feed-link {
    display: block;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.marquee-track {
    display: flex;
    flex-shrink: 0;
    display: flex;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
    min-width: 100%;
}

.marquee-item {
    flex: 0 0 auto;
    width: 300px;
    /* Base width */
    height: 300px;
    position: relative;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Hover Overlay Effect */
.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    /* Allows click to pass through to link */
}

.insta-feed-link:hover .insta-overlay {
    opacity: 1;
}

.insta-icon {
    color: white;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.insta-feed-link:hover .insta-icon {
    transform: scale(1);
}

/* Pause animation on hover */
.insta-feed-link:hover .marquee-track {
    animation-play-state: paused;
}

/* Responsive styles for booking section */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

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

    .booking-title {
        font-size: 2rem;
    }
}

/* Responsive styles for feedback section */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
        /* 2 cards visible */
    }
}

@media (max-width: 768px) {
    .feedback-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .testimonial-card {
        flex: 0 0 100%;
        /* 1 card visible */
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1.5rem;
    }

    .nav-center {
        order: -1;
        /* Put logo first */
    }

    .logo {
        position: static;
        transform: none;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }

    .logo img {
        height: 60px;
        width: auto;
        border-radius: 0;
    }

    .menu-toggle {
        display: flex;
        /* Ensure it's visible */
    }

    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .everything-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .venue-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .navbar a {
        font-size: 0.85rem;
    }

    .nav-left,
    .nav-right {
        gap: 1rem;
    }

    .logo img {
        height: 50px;
    }

    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .features {
        padding: 0 1rem 2rem;
    }
}

/* Mobile Drawer & Navigation */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--navy-dark);
    z-index: 1100;
    padding: 2rem;
    transition: left 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
}

.mobile-drawer.active {
    left: 0;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.drawer-logo {
    height: 50px;
    width: auto;
}

.drawer-close {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.drawer-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.drawer-links a:hover {
    color: var(--orange-primary);
}

.btn-book-mobile {
    background-color: var(--orange-primary);
    color: var(--text-white);
    padding: 0.8rem;
    text-align: center;
    border-radius: 4px;
    margin-top: 1rem;
}



/* Pagination */
.PaginationV1 {
    display: flex;
    gap: 12px;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /* margin-top: 20px; */
    margin: 24px 0;
    flex-wrap: wrap;
}

.Control {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    border-radius: 10px;
    outline: 1.25px solid rgba(255,255,255,0.1);
    cursor: pointer;
    background-color: rgba(255,255,255,0.05);
    width: 50px;
    height: 50px;
    aspect-ratio: 1 /1;
}

.IconPaginationPrev, .IconPaginationFirst, .IconPaginationNext, .IconPaginationLast {
    display: flex;
    align-items: center;
}

.ControlActive {
    background-color: #1f2937; /* slate-900 */
}

.ControlDisabled {
    opacity: 0.5;
    pointer-events: none;
}

.Page {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    border-radius: 10px;
    outline: 1.25px solid rgba(255,255,255,0.1);
    background-color: rgba(255,255,255,0.05);
    text-decoration: none;
    width: 50px;
    height: 50px;
}

.PageActive {
    background-color: #dc2626; /* red-600 */
}

.PageDisabled {
    cursor: default;
    opacity: 0.5;
}

.Date {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
}



@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }

    .nav-container {
        justify-content: space-between;
    }

    .nav-center {
        order: -1;
    }
}

@media (max-width: 1024px) {
    h1 {
    font-size: 2.5rem !important;
    line-height: 1.25 !important;
    }

    h2 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
    }

    h3 {
    font-size: 1.6rem !important;
    line-height: 1.35 !important;
    }

    h4 {
    font-size: 1.3rem !important;
    line-height: 1.4 !important;
    }

    h5 {
    font-size: 1.1rem !important;
    line-height: 1.45 !important;
    }

    h6 {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    }
}



