/* Global Styles & Variables */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --primary-dark: #1a1a2e;
    --primary-light: #16213e;
    --accent-gold: #F4C2C2; /* Champagne Pink */
    --text-main: #333;
    --text-light: #f4f4f4;
    --bg-off-white: #f9f9f9;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--bg-off-white);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation - Premium Glass Effect */
header {
    background: rgba(244, 194, 194, 0.95);
    color: var(--primary-dark);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--primary-dark);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 115px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    letter-spacing: 1px;
    margin-bottom: 0;
}

.logo-text .tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2px;
    opacity: 0.7;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-dark);
    transition: width 0.3s;
}

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

.nav-links a:hover {
    color: var(--primary-light);
}

/* Hero Section - Immersive */
.hero {
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.7)), url('https://images.unsplash.com/photo-1542838132-92c53300491e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
}

.hero-content h2 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-gold);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--accent-gold);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 1rem auto 0;
}

/* Product Preview - Grid */
.product-preview {
    padding: 80px 0;
    background-color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.card-image {
    height: 220px;
    background-color: #e0e0e0;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
}

.card-content {
    padding: 1.5rem;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.card-price {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Location Finder Map */
.location-section {
    padding: 80px 0;
    background-color: var(--primary-dark);
    color: white;
}

.location-section h2 {
    color: white;
}

.map-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-visual {
    flex: 1 1 400px;
    height: 400px;
    background-color: #e8e8e8;
    position: relative;
}

.map-visual iframe {
    width: 100%;
    height: 100%;
}

/* A fake "pin" overlay */
.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    color: var(--accent-gold);
    font-size: 3rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.location-details {
    flex: 1 1 300px;
    padding: 3rem;
    color: var(--text-main);
}

.info-row {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 24px;
    margin-right: 15px;
    color: var(--primary-dark);
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: rgba(255,255,255,0.6);
    padding: 4rem 0 2rem;
    border-top: 5px solid var(--accent-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    font-size: 0.9rem;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger animation when active */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

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

/* Collections Hero Section */
.collections-hero {
    background: linear-gradient(135deg, #FFF5F5 0%, #F4C2C2 30%, #E8B4B8 60%, #F5D0D0 100%);
    padding: 80px 24px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

.collections-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.collections-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-bowl {
    width: 380px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.15));
}

.quick-links-wrapper {
    display: flex;
    flex-direction: column;
}

.footer-cup {
    width: 90px;
    height: auto;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
    margin-top: 15px;
}

.collections-hero-content {
    max-width: 650px;
    text-align: center;
    z-index: 2;
}

.hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-dark);
    opacity: 0.8;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero-title {
    font-size: 4rem;
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-title span {
    color: #8B4557;
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--primary-dark);
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.explore-btn {
    display: inline-block;
    background-color: var(--primary-dark);
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-dark);
    border-radius: 50px;
}

.explore-btn:hover {
    background-color: transparent;
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Coming Soon Section */
.coming-soon-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFF5F5 0%, #ffffff 100%);
    overflow: hidden;
}

.coming-soon-section .section-title {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.coming-soon-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    font-weight: 400;
}

.logo-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.logo-carousel-wrapper::before,
.logo-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #FFF5F5 0%, transparent 100%);
}

.logo-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.logo-carousel {
    width: 100%;
    overflow: hidden;
}

.logo-track {
    display: flex;
    animation: scroll 15s linear infinite;
    width: fit-content;
}

.brand-logo {
    flex-shrink: 0;
    width: 220px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--primary-dark);
    border-radius: 16px;
    margin: 0 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.brand-logo img {
    max-width: 90%;
    max-height: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.brand-logo:hover img {
    opacity: 1;
}

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

/* Pause animation on hover */
.logo-carousel:hover .logo-track {
    animation-play-state: paused;
}

/* Menu Section */
.menu-section {
    padding: 60px 0;
    background: #ffffff;
}

.menu-section .section-title {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.menu-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    font-weight: 400;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.menu-category {
    background: #faf8f5;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

.menu-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent-gold);
}

.size-header {
    font-size: 0.7rem;
    color: #888;
    text-align: right;
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    line-height: 1.3;
}

.item-name {
    color: var(--text-main);
    flex: 1;
}

.item-price {
    color: var(--primary-dark);
    font-weight: 600;
    white-space: nowrap;
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    /* Collections Hero Mobile */
    .collections-hero {
        padding: 60px 28px 50px;
        min-height: 50vh;
    }
    
    .collections-hero-content {
        max-width: 100%;
    }
    
    .collections-hero::before,
    .collections-hero::after {
        display: none;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(244, 194, 194, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    
    .nav-links a {
        font-size: 1.1rem;
    }
    
    .logo-img {
        height: 85px;
    }
    
    .logo-text h1 {
        font-size: 1.4rem;
    }
    
    .logo-text .tagline {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
    
    .quick-links-wrapper {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }
    
    .footer-cup {
        width: 70px;
        margin-top: 0;
    }
    
    .hero-bowl {
        width: 260px;
        margin-bottom: 15px;
    }
    
    /* Coming Soon Mobile */
    .coming-soon-section {
        padding: 60px 0;
    }
    
    .coming-soon-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .brand-logo {
        width: 160px;
        height: 100px;
        padding: 15px;
        margin: 0 12px;
    }
    
    .brand-logo img {
        max-height: 70px;
    }
    
    .logo-carousel-wrapper::before,
    .logo-carousel-wrapper::after {
        width: 50px;
    }

    /* Menu Section Mobile */
    .menu-section {
        padding: 50px 0;
    }

    .menu-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 10px;
    }

    .menu-category {
        padding: 15px;
    }

    .menu-category-title {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .menu-item {
        font-size: 0.7rem;
    }

    .item-price {
        font-size: 0.68rem;
    }
}

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