/* ===================================
   RESET & BASE STYLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - More playful but tasteful */
    --color-primary: #1a1a1a;
    --color-secondary: #666;
    --color-accent: #8B4C9E;
    --color-accent-light: #A66CB8;
    --color-pink: #FFB6C1;
    --color-orange: #FFA500;
    --color-background: #ffffff;
    --color-gray: #fafafa;
    --color-border: #e8e8e8;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 8rem;

    /* Border Radius - Softer, more playful */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;

    /* Other */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1400px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-primary);
    background: var(--color-background);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-secondary);
}

.lead {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-primary);
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* ===================================
   PROGRESS BAR
   =================================== */

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--color-accent);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ===================================
   NAVIGATION
   =================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-background);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.nav.scrolled {
    border-bottom-color: var(--color-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

.logo-icon {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--color-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-background);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 2rem;
        transition: var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }

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

    .nav-link {
        font-size: 1.25rem;
    }
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 1.125rem 2.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-background);
    box-shadow: 0 10px 30px rgba(139, 76, 158, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 76, 158, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-background);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ===================================
   ORDER BUTTONS
   =================================== */

.order-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1s;
}

.order-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.order-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.order-btn:hover::before {
    width: 300px;
    height: 300px;
}

.order-btn.uber-eats {
    background: linear-gradient(135deg, #06C167, #05A557);
    color: white;
    box-shadow: 0 5px 20px rgba(6, 193, 103, 0.3);
}

.order-btn.uber-eats:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 193, 103, 0.4);
}

.order-btn.grubhub {
    background: linear-gradient(135deg, #F63440, #E6242E);
    color: white;
    box-shadow: 0 5px 20px rgba(246, 52, 64, 0.3);
}

.order-btn.grubhub:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(246, 52, 64, 0.4);
}

.order-icon {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .order-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .order-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    position: relative;
    background: linear-gradient(135deg, #faf5ff 0%, #fff5f7 50%, #fffbf0 100%);
    /* PHOTO: Uncomment and add your hero image */
    /* background-image: url('images/hero-bg.jpg'); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 76, 158, 0.05) 0%, rgba(255, 182, 193, 0.05) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-emoji {
    font-size: 6rem;
    margin-bottom: 2rem;
    display: inline-block;
    opacity: 0;
    animation: floatIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.2s;
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-title {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.4s;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.6s;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.8s;
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 3rem;
        background-attachment: scroll;
    }

    .hero-emoji {
        font-size: 4rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--color-secondary);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--color-border);
    position: relative;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: var(--color-accent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(30px);
    }
}

/* ===================================
   SECTIONS
   =================================== */

.section {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--color-gray);
}

@media (max-width: 768px) {
    .section {
        padding: var(--spacing-xl) 0;
    }
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    margin-bottom: var(--spacing-lg);
}

.section-number {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-secondary);
    letter-spacing: 0.1em;
}

.section-title {
    margin: 0;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

.about-images {
    position: relative;
}

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

.about-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 1;
    background: var(--color-gray);
    box-shadow: 0 10px 40px rgba(139, 76, 158, 0.1);
    transition: var(--transition);
}

.about-img-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 76, 158, 0.2);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img-wrapper:hover .about-img {
    transform: scale(1.1);
}

/* Stagger animation for images */
.about-img-wrapper:nth-child(1) {
    animation-delay: 0.1s;
}

.about-img-wrapper:nth-child(2) {
    animation-delay: 0.2s;
}

.about-img-wrapper:nth-child(3) {
    animation-delay: 0.3s;
}

.about-img-wrapper:nth-child(4) {
    animation-delay: 0.4s;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-features-inline {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(139, 76, 158, 0.1), rgba(255, 182, 193, 0.1));
    border: 1px solid rgba(139, 76, 158, 0.2);
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: var(--transition);
}

.feature-badge:hover {
    background: linear-gradient(135deg, rgba(139, 76, 158, 0.15), rgba(255, 182, 193, 0.15));
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.feature-badge .feature-icon {
    font-size: 1.5rem;
}

/* ===================================
   SIGNATURE SECTION
   =================================== */

.signature-section {
    background: linear-gradient(135deg, #8B4C9E 0%, #A66CB8 100%);
    color: var(--color-background);
    position: relative;
    overflow: hidden;
}

.signature-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.signature-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.15), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.signature-section .container {
    position: relative;
    z-index: 2;
}

.signature-section .section-number,
.signature-section .section-title {
    color: var(--color-background);
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

@media (max-width: 640px) {
    .signature-grid {
        grid-template-columns: 1fr;
    }
}

.signature-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.signature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.signature-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--color-gray);
    position: relative;
}

.signature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.signature-content {
    padding: 2rem;
    text-align: center;
}

.signature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-background);
}

.signature-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.signature-item .price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-background);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
}

/* ===================================
   MENU SECTION
   =================================== */

.menu-note {
    background: linear-gradient(135deg, rgba(139, 76, 158, 0.05), rgba(255, 182, 193, 0.05));
    border: 1px solid rgba(139, 76, 158, 0.2);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.menu-note p {
    margin: 0;
    color: var(--color-primary);
}

.menu-note ul {
    color: var(--color-secondary);
    line-height: 1.8;
}

.menu-categories {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.category-btn {
    padding: 0.875rem 2rem;
    background: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-secondary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius-lg);
}

.category-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-background);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(139, 76, 158, 0.3);
}

.menu-content {
    position: relative;
    min-height: 400px;
}

.menu-category {
    display: none;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.menu-category.active {
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

.menu-item {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    position: relative;
    background: var(--color-background);
}

.menu-item:hover {
    background: linear-gradient(135deg, rgba(139, 76, 158, 0.03), rgba(255, 182, 193, 0.03));
    transform: scale(1.02);
    z-index: 2;
}

.menu-item.featured::before {
    content: '★';
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--color-accent);
    font-size: 1.25rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.menu-item h3 {
    font-size: 1.125rem;
    font-weight: 500;
}

.menu-price {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--color-accent);
    font-weight: 600;
}

/* ===================================
   INSTAGRAM SECTION
   =================================== */

.instagram-section {
    text-align: center;
}

.instagram-content {
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: var(--transition);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
}

.instagram-link:hover {
    background: linear-gradient(135deg, rgba(139, 76, 158, 0.05), rgba(255, 182, 193, 0.05));
    transform: translateY(-3px);
}

.instagram-icon {
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 640px) {
    .instagram-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.instagram-photo {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-gray);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.instagram-photo:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 76, 158, 0.2);
}

.instagram-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.instagram-photo:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 76, 158, 0.9), rgba(255, 182, 193, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.instagram-photo:hover .instagram-overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.instagram-photo:hover .overlay-text {
    transform: translateY(0);
}

.instagram-text {
    color: var(--color-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   LOCATION SECTION
   =================================== */

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
}

@media (max-width: 1024px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-block p {
    margin-bottom: 0.5rem;
}

.info-block a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.info-block a:hover {
    color: var(--color-accent);
}

.link-arrow {
    display: inline-block;
    margin-top: 1rem;
    color: var(--color-primary);
    font-weight: 500;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.hours-row:last-child {
    border-bottom: none;
}

.location-map {
    min-height: 500px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    border-radius: var(--radius-md);
}

@media (max-width: 768px) {
    .location-map {
        min-height: 400px;
    }
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--color-primary);
    color: var(--color-background);
    padding: var(--spacing-lg) 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-background);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ===================================
   ANIMATIONS
   =================================== */

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

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

/* Intersection Observer Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */

@media (max-width: 1024px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
        --spacing-xxl: 5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
        --spacing-xxl: 4rem;
    }

    .section-header {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-icon img, img.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-brand img.logo-icon {
    width: 50px;
    height: 50px;
}

/* ===================================
   PHONE SIGNUP POPUP (NEW CODE)
   =================================== */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.popup-container {
    background: var(--color-background);
    border-radius: var(--radius-md);
    padding: 3rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-container {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--color-secondary);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.popup-close:hover {
    color: var(--color-primary);
    transform: rotate(90deg);
}

.popup-step h2 {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.popup-step p {
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

#popupForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#phoneInput {
    font-family: var(--font-body);
    font-size: 1.1rem;
    padding: 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    text-align: center;
    transition: var(--transition);
}

#phoneInput:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(139, 76, 158, 0.2);
}

#popupForm .btn {
    width: 100%;
    position: relative;
}

/* Loading state for the button */
#popupSubmitBtn.loading {
    pointer-events: none;
    color: transparent;
}

#popupSubmitBtn.loading::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -12px;
    margin-top: -12px;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


.popup-disclaimer {
    font-size: 0.8rem !important; /* Use important to override other p tags */
    color: #999 !important;
    margin-top: 1rem;
    margin-bottom: 0 !important;
}

.discount-code {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    background: linear-gradient(135deg, #faf5ff, #fff5f7);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 2px dashed var(--color-accent);
    margin: 2rem 0;
    user-select: all; /* Lets user select the code easily */
}
.fade-in-section,
.about-img-wrapper,
.signature-item,
.menu-item,
.instagram-photo {
    /* Hints to the browser to optimize for these changes */
    will-change: opacity, transform;
    /* meaningful only if hardware acceleration is needed */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
/* ===================================
   INSTAGRAM SECTION WITH EMBEDS
   =================================== */

.instagram-section {
    text-align: center;
}

.instagram-content {
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: var(--transition);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
}

.instagram-link:hover {
    background: linear-gradient(135deg, rgba(139, 76, 158, 0.05), rgba(255, 182, 193, 0.05));
    transform: translateY(-3px);
}

.instagram-icon {
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Embedded Instagram Posts - New Styles */
.instagram-embeds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    justify-items: center;
    align-items: start;
}

@media (max-width: 768px) {
    .instagram-embeds {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Style the Instagram embed containers */
.instagram-embeds .instagram-media {
    max-width: 100% !important;
    min-width: 320px !important;
    margin: 0 auto !important;
    box-shadow: 0 10px 40px rgba(139, 76, 158, 0.1) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.instagram-embeds .instagram-media:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(139, 76, 158, 0.2) !important;
}

.instagram-text {
    color: var(--color-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Loading state for embeds */
.instagram-embeds .instagram-media[data-instgrm-payload-id] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}