/* 
   WISH DELISH REDESIGN v2.2
   Theme: Italian Cucina - Blue (#3030c6) & Coral (#ff8a81)
   Informational Only (Cart removed)
*/

:root {
    --color-primary: #3030c6;
    --color-secondary: #ff8a81;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9ff;
    --color-text: #1a1a1a;
    --color-text-muted: #5a5a5a;
    --color-accent: #eef0ff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --container-width: 1200px;
    --nav-height: 80px;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@400;500;600&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.serif {
    font-family: var(--font-heading);
    font-weight: 700;
}

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

/* --- ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(48, 48, 198, 0.15);
}

/* --- HEADER & NAV --- */
header {
    height: var(--nav-height);
    background: white;
    border-bottom: 2px solid var(--color-accent);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: var(--nav-height);
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

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

/* --- HERO --- */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-bg-alt) 100%);
    padding: 80px 0;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 30px;
    color: var(--color-primary);
}

.hero p {
    font-size: 1.4rem;
    color: var(--color-text-muted);
    margin-bottom: 45px;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--color-secondary);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(255, 138, 129, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--color-primary);
    display: inline-block;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(48, 48, 198, 0.1);
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 30px 30px 80px rgba(48, 48, 198, 0.1);
}

/* --- SECTIONS --- */
.section-padding {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- GRID GALLERY --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.product-card .info {
    padding: 30px;
    text-align: center;
}

.product-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

/* --- TRANSFORMATION SECTION --- */
.transform-section {
    background: var(--color-primary);
    color: white;
    padding: 140px 0;
    text-align: center;
    overflow: hidden;
}

.transform-container {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
    cursor: pointer;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.transform-card {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 30px;
}

.transform-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-sweet {
    opacity: 0;
    transform: scale(1.1);
    filter: blur(10px);
}

.transform-container:hover .img-savory {
    opacity: 0;
    transform: scale(0.9);
    filter: blur(10px);
}

.transform-container:hover .img-sweet {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.transform-overlay {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 50px;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.25rem;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.transform-container:hover .transform-overlay {
    color: var(--color-secondary);
}

/* --- DESSERT GALLERY --- */
.dessert-gallery {
    background: var(--color-bg-alt);
    padding-top: 100px;
}

.product-card.dessert {
    border: 2px solid transparent;
    transition: var(--transition);
}

.product-card.dessert:hover {
    border-color: var(--color-secondary);
}

/* --- ABOUT SECTION --- */
.about-section {
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 25px;
}

.about-content .lead {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--color-text-muted);
}

.contact-highlights {
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-top: 5px;
}

.highlight-item h4 {
    color: var(--color-primary);
    margin-bottom: 5px;
}

.map-container {
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

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

/* --- INSTAGRAM FEED --- */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.insta-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

/* --- CONTACT & SOCIAL --- */
.footer-main {
    background: var(--color-primary);
    color: white;
    padding: 100px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--color-secondary);
    transform: scale(1.1);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* --- MENU PAGE --- */
.category-nav {
    background: white;
    padding: 20px 0;
    border-bottom: 2px solid var(--color-accent);
    position: sticky;
    top: var(--nav-height);
    z-index: 900;
}

.nav-belt {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-pill {
    text-decoration: none;
    color: var(--color-text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 25px;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-pill:hover {
    color: var(--color-secondary);
    background: rgba(255, 138, 129, 0.05);
}

.nav-pill.active {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 10px 20px rgba(48, 48, 198, 0.2);
}

.menu-item {
    padding: 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
    border-left: 5px solid var(--color-secondary);
}

.menu-item .header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.menu-item h4 {
    font-size: 1.5rem;
}

.menu-item .price {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.25rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .product-grid,
    .insta-grid {
        grid-template-columns: 1fr;
    }
}