/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #D6A99D;
    --secondary: #9CAFAA;
    --accent-cream: #FBF3D5;
    --sage: #D6DAC8;
    --dark-color: #3d4845;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #FFFFFF;
    --shadow: 0 10px 40px rgba(214, 169, 157, 0.15);
    --shadow-lg: 0 20px 60px rgba(214, 169, 157, 0.2);
    --gradient: linear-gradient(135deg, #D6A99D 0%, #9CAFAA 100%);
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
    opacity: 0;
    animation: fadeInPage 0.6s ease-in forwards;
}

body.nav-open {
    overflow: hidden;
}

@keyframes fadeInPage {
    to {
        opacity: 1;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.navbar.scrolled {
    background: var(--accent-cream);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(214, 169, 157, 0.2);
}

.nav-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 0%;
    transition: width 0.1s ease;
    z-index: 10;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 70px;
    width: auto;
    transition: all 0.4s ease, opacity 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.navbar.scrolled .logo-img {
    height: 60px;
    filter: drop-shadow(0 2px 4px rgba(214, 169, 157, 0.2));
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.navbar.scrolled .logo-text {
    color: var(--primary);
    text-shadow: none;
}

.logo-img {
    height: 60px;
    width: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
    text-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.navbar.scrolled .nav-link::after {
    background: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--white);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary);
}

.btn-order {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-order:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled .btn-order {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.navbar.scrolled .btn-order:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.nav-close {
    display: none;
    background: transparent;
    border: none;
    padding: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .hamburger span {
    background: var(--text-dark);
    box-shadow: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    position: relative;
    padding: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(214, 169, 157, 0.35) 0%, rgba(156, 175, 170, 0.25) 50%, rgba(214, 169, 157, 0.35) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: transparent;
    backdrop-filter: blur(8px);
    padding: 0.6rem 2rem;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    animation: fadeInUp 0.8s ease;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.hero-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s both, float 3s ease-in-out 2s infinite;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.6)) brightness(1.1);
    transition: all 0.4s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.8)) brightness(1.15);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    margin-bottom: 0;
    animation: fadeInUp 1s ease 0.4s both;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.6s both;
    letter-spacing: 2px;
    text-transform: none;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-typed-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    position: relative;
    min-height: 1.4em;
}

.hero-typed-text {
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: capitalize;
    font-weight: 600;
}

.hero-typed-cursor {
    width: 2px;
    height: 1.3em;
    background: rgba(255, 255, 255, 0.9);
    display: inline-block;
    animation: blink 0.9s steps(2, start) infinite;
    margin-left: 2px;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Coming Soon Page */
body.coming-soon-body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, rgba(214, 169, 157, 0.65), rgba(0, 0, 0, 0.85)), url('thumbnail_image0.jpg') center/cover fixed;
    color: var(--white);
    text-align: center;
    padding: 3rem 1.5rem;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.coming-soon-wrapper {
    max-width: 720px;
    width: 100%;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    position: relative;
}

.coming-soon-wrapper::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(214, 169, 157, 0.6), rgba(156, 175, 170, 0.6));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.coming-soon-logo {
    width: 220px;
    margin-bottom: 1.5rem;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.5rem;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
}

.coming-soon-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    margin-bottom: 1.5rem;
}

.coming-soon-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.coming-soon-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.coming-soon-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.coming-soon-meta-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.25rem;
    border-radius: 16px;
}

.coming-soon-meta-card a,
.coming-soon-footer a {
    color: var(--accent-cream);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.coming-soon-meta-label {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.coming-soon-footer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .coming-soon-wrapper {
        padding: 2.5rem 1.75rem;
    }

    .coming-soon-meta {
        text-align: center;
    }
}

.hero-description {
    font-size: 1.05rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.8s both;
    line-height: 1.8;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 3;
    animation: fadeIn 1s ease 1.5s both;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: rgba(255, 255, 255, 0.8);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(50px);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid transparent;
    cursor: pointer;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(3px);
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--white);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Input Focus States */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, var(--white) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(214, 169, 157, 0.12);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(214, 169, 157, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    display: block;
    filter: grayscale(0);
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

.feature-card h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Section Title */
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 1px;
}

.section-title::after {
    content: '✦';
    display: block;
    font-size: 1.2rem;
    color: var(--primary);
    margin: 1.5rem auto 0;
    opacity: 0.6;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.section-tagline {
    display: inline-block;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

/* Menu Section */
.menu {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--accent-color) 100%);
    position: relative;
}

.menu-header {
    text-align: center;
    margin-bottom: 5rem;
}

.menu-tagline {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(214, 169, 157, 0.3);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.menu-item {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(214, 169, 157, 0.12);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(214, 169, 157, 0.15);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.menu-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.menu-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(214, 169, 157, 0.25);
    border-color: var(--primary-color);
}

.menu-item-image {
    height: 320px;
    overflow: hidden;
    background: var(--sage-color);
    position: relative;
}

.menu-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(214, 169, 157, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.menu-item:hover .menu-item-overlay {
    opacity: 1;
}

.menu-hover-text {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu-item:hover .menu-hover-text {
    transform: translateY(0);
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(1.05) saturate(1.15);
}

.menu-item:hover .menu-img {
    transform: scale(1.1);
}

.menu-item-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.menu-item-content h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    font-family: 'Playfair Display', serif;
}

.menu-item-content p {
    color: #5a6662;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1rem;
}

.menu-item-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(214, 169, 157, 0.15);
}

.menu-tag {
    background: var(--gradient);
    color: var(--white);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(214, 169, 157, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.menu-tag::before {
    content: '✦';
    margin-right: 0.5rem;
    font-size: 0.7rem;
    opacity: 0.8;
}

.menu-item:hover .menu-tag {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(214, 169, 157, 0.4);
}

.menu-pricing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
}

.pricing-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(214, 169, 157, 0.12);
    border: 2px solid rgba(214, 169, 157, 0.15);
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(214, 169, 157, 0.2);
}

.pricing-icon {
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(214, 169, 157, 0.1), rgba(156, 175, 170, 0.1));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(214, 169, 157, 0.2), rgba(156, 175, 170, 0.2));
}

.pricing-icon svg {
    color: var(--primary);
    stroke: var(--primary);
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
}

.pricing-card p {
    margin: 0.5rem 0;
}

.pricing-card strong {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.pricing-subtext {
    color: #5a6662;
    font-size: 1rem;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-tagline {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--accent-cream) 0%, rgba(251, 243, 213, 0.5) 100%);
    border-radius: 16px;
    border-left: 4px solid var(--primary);
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.feature-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(214, 169, 157, 0.2);
}

.feature-icon-circle svg {
    color: var(--primary);
    stroke: var(--primary);
}

.about-feature-item h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.about-feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(214, 169, 157, 0.2);
}

.stat {
    text-align: center;
    position: relative;
}

.stat::before {
    content: '✦';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: var(--primary);
    opacity: 0.4;
}

.stat h3 {
    font-size: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat p {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Image Carousel */
.about-images {
    position: relative;
}

.about-image-carousel {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(214, 169, 157, 0.3);
}

.carousel-container {
    position: relative;
    width: 100%;
    padding-bottom: 120%;
    background: var(--accent-cream);
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-img.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 5px;
}

/* Order Section */
.order {
    padding: 5rem 0;
    background: var(--white);
}

.order-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(214, 169, 157, 0.15);
    border: 2px solid rgba(214, 169, 157, 0.1);
}

.form-note {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-style: italic;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(214, 169, 157, 0.2);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: var(--accent-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(214, 169, 157, 0.1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

.form-note {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 20rem;
    color: rgba(214, 169, 157, 0.05);
    font-family: 'Playfair Display', serif;
    pointer-events: none;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--accent-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(214, 169, 157, 0.12);
    border: 2px solid rgba(214, 169, 157, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(214, 169, 157, 0.2);
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--light-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
}

.contact-item h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    line-height: 1.8;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--accent-cream) 0%, var(--white) 100%);
    position: relative;
}

.faq-grid {
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(214, 169, 157, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(214, 169, 157, 0.15);
}

.faq-question {
    width: 100%;
    padding: 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary) 0%, 
        var(--secondary) 50%, 
        var(--primary) 100%);
}

/* Footer Booking Section */
.footer-booking {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(214, 169, 157, 0.1), rgba(156, 175, 170, 0.1));
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-booking::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--primary));
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-booking:hover::before {
    opacity: 0.3;
}

.footer-booking h3 {
    font-size: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.footer-booking p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.footer-booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.booking-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.footer-booking-form input {
    padding: 1.1rem 1.5rem;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.footer-booking-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-booking-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(214, 169, 157, 0.1);
}

.footer-booking-form button {
    padding: 1.2rem 3rem;
    margin-top: 0.5rem;
    font-size: 1.05rem;
    letter-spacing: 1px;
    border-radius: 12px;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
    filter: brightness(1.2);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-col ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-col ul li a:hover::before {
    width: 100%;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(214, 169, 157, 0.3);
    border-color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about {
        padding: 4rem 0;
    }
    
    .about-features {
        padding: 1.5rem;
    }
    
    .about-feature-item {
        flex-direction: row;
        text-align: left;
    }
    
    .feature-icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding-top: 2rem;
    }
    
    .stat::before {
        top: -20px;
        font-size: 0.8rem;
    }
    
    .stat h3 {
        font-size: 1.8rem;
    }
    
    .stat p {
        font-size: 0.85rem;
    }
    
    .carousel-container {
        padding-bottom: 100%;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
    }
    
    .footer-booking {
        margin-bottom: 4rem;
        padding: 2.5rem 1.5rem;
    }
    
    .footer-booking h3 {
        font-size: 2rem;
    }
    
    .booking-form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.5rem;
    }
}

.footer-content {
    display: none; /* Old styles - replaced with new footer design */
}

.footer-section {
    display: none; /* Old styles - replaced with new footer design */
}

.social-links {
    display: none; /* Old styles - replaced with new footer design */
}

.footer-bottom-old {
    justify-content: center;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 12px rgba(248, 184, 196, 0.3);
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(248, 184, 196, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    /* Hide logo on mobile until scrolled */
    .logo-img {
        opacity: 0;
        pointer-events: none;
    }

    .navbar.scrolled .logo-img {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        background: rgba(251, 243, 213, 0.95);
        backdrop-filter: blur(22px);
        width: 100%;
        text-align: center;
        transition: transform 0.45s ease, opacity 0.45s ease;
        box-shadow: none;
        padding: 6rem 2rem 3rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        z-index: 999;
        visibility: hidden;
        pointer-events: none;
        height: 100vh;
        align-items: center;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-close {
        display: flex;
        position: fixed;
        top: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        border-radius: 999px;
        background: rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.4);
        align-items: center;
        justify-content: center;
        z-index: 1001;
        opacity: 0;
        transform: scale(0.9);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }

    .nav-close span {
        position: absolute;
        width: 20px;
        height: 2px;
        background: var(--white);
    }

    .nav-close span:first-child {
        transform: rotate(45deg);
    }

    .nav-close span:last-child {
        transform: rotate(-45deg);
    }

    .nav-menu.active ~ .nav-close {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
    }

    .nav-menu li {
        margin: 0.25rem 0;
        width: 100%;
    }

    .nav-menu a {
        font-size: 1.3rem;
        padding: 0.75rem 0;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(50, 50, 50, 0.9);
        text-shadow: none;
    }

    .nav-menu .btn-order {
        display: inline-flex;
        justify-content: center;
        margin-top: 1.5rem;
        font-size: 1rem;
        letter-spacing: 2px;
        width: auto;
        padding: 1rem 3rem;
        border-width: 2px;
        border-color: rgba(50, 50, 50, 0.4);
        color: rgba(50, 50, 50, 0.85);
        background: transparent;
        backdrop-filter: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1px;
        flex-direction: column;
        gap: 0.35rem;
        text-align: center;
    }

    .hero-logo {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-typed-wrapper {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
        margin-bottom: 3rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .scroll-indicator {
        bottom: 15px;
        font-size: 0.65rem;
    }

    .scroll-line {
        height: 40px;
    }

    /* Reduce section padding on mobile */
    .menu {
        padding: 3rem 0;
    }

    .order {
        padding: 3rem 0;
    }

    .testimonials {
        padding: 3rem 0;
    }

    .contact {
        padding: 3rem 0;
    }

    .faq {
        padding: 3rem 0;
    }

    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .image-placeholder {
        width: 300px;
        height: 300px;
        font-size: 7rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .order-form {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-logo {
        max-width: 150px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet Breakpoint */
@media (min-width: 769px) and (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #27ae60;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.5s ease;
    z-index: 1001;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
