/* --- BRAND CORE --- */
:root {
    --pink: #f3b1b6;
    --brown: #6d4135;
    --cream: #fdf1ed;
    --white: #ffffff;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    color: var(--brown);
    background: var(--cream);
    overflow-x: hidden;
    min-height: 100vh;
}
/* Loading progress bar */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--pink);
    width: 0%;
    z-index: 9999;
    transition: width 0.2s ease, opacity 0.5s ease;
}
/* --- NAVIGATION --- */
nav {
    display: flex; flex-direction: column; align-items: center;
    padding: 15px 5%; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}
nav.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.nav-left { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.nav-logo { height: 60px; width: auto; }
.brand-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; }
.nav-links {
    display: flex; list-style: none; gap: 15px; align-items: center;
    flex-wrap: wrap; justify-content: center;
}
.nav-links a {
    text-decoration: none; color: var(--brown); font-weight: 600; font-size: 0.85rem;
    position: relative;
    transition: color 0.3s ease;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--pink); }
.social-links { display: flex; gap: 15px; font-size: 1.4rem; }
.social-links a { color: var(--pink); transition: transform 0.3s ease; }
.social-links a:hover { transform: scale(1.2); }
.nav-btn { background: var(--pink); color: white !important; padding: 8px 18px; border-radius: 50px; }
@media (min-width: 769px) {
    nav { flex-direction: row; justify-content: space-between; min-height: 100px; }
    .nav-left { margin-bottom: 0; }
    .nav-logo { height: 80px; }
}
/* --- HERO + PARALLAX + MOUSE GLOW --- */
.parallax-hero {
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.hero {
    min-height: 85vh;
    position: relative;
    background: url('hero-bg.jpg') no-repeat 60% center/cover;
    display: flex; align-items: center; justify-content: center; text-align: center;
    overflow: hidden;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(253, 241, 237, 0.50); z-index: 1; }
.hero-content { position: relative; z-index: 2; padding: 20px; }
.mouse-glow {
    position: relative;
}
.mouse-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(243, 177, 182, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.3s ease;
}
.hero-entrance {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1.5s ease-out forwards;
    z-index: 3;
}
.hero-title {
    font-family: 'Playfair Display';
    font-size: clamp(3rem, 10vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
.hero-subtitle {
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}
.hero-cta {
    background: var(--pink);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(243, 177, 182, 0.4);
}
@keyframes heroFadeIn {
    to { opacity: 1; transform: translateY(0); }
}
/* Mobile fallback for parallax & glow */
@media (max-width: 768px) {
    .parallax-hero { background-attachment: scroll; }
    .hero { min-height: 70vh; }
    .hero-title { font-size: 2.5rem; }
    .mouse-glow::before { opacity: 0; } /* Disable glow on mobile for perf */
}
/* --- GLASSMORPHISM --- */
.testimonial-card,
.order-card,
.form-card {
    background: rgba(255, 255, 255, 0.85); /* Fixed readability */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}
.testimonial-card:hover,
.order-card:hover,
.form-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(14px);
}
/* Testimonial */
.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 0 5%;
}
.testimonial-card {
    padding: 32px 28px;
    width: 100%;
    max-width: 350px;
    text-align: left;
}
.quote-icon {
    color: var(--pink);
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}
.testimonial-text {
    font-style: italic;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--brown);
}
.testimonial-author {
    font-weight: 700;
    color: var(--pink);
    text-transform: uppercase;
    font-size: 0.85rem;
    text-align: right;
}
/* Order cards flip */
.order-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 40px 5%;
}
.order-card {
    perspective: 1000px;
    position: relative;
    height: 220px;
    width: 280px;
    text-decoration: none;
    color: var(--brown);
}
.card-front, .card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s;
    border-radius: 24px;
}
.card-back {
    transform: rotateY(180deg);
    background: rgba(243, 177, 182, 0.9);
    color: white;
}
.order-card:hover .card-front { transform: rotateY(180deg); }
.order-card:hover .card-back { transform: rotateY(0deg); }
.card-back p { font-size: 1.1rem; margin-bottom: 10px; }
.card-back span { font-weight: 600; }
/* --- FADE-IN --- */
.fade-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-visible {
    opacity: 1;
    transform: translateY(0);
}
/* --- SOCIAL CTA & FOOTER --- */
.social-cta {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 2rem;
    margin-top: 20px;
}
.social-icons a {
    color: var(--pink);
    transition: transform 0.3s ease;
}
.social-icons a:hover {
    transform: scale(1.2);
}
footer {
    text-align: center;
    padding: 40px 20px;
    color: #aaa;
    font-size: 0.8rem;
    background-color: var(--cream);
}
.footer-social {
    margin-top: 10px;
}
.footer-social a {
    color: var(--pink);
    margin: 0 15px;
    font-weight: 600;
    text-decoration: none;
}
/* --- FORMS & CONTAINERS --- */
.container { padding: 40px 5%; max-width: 800px; margin: 0 auto; text-align: center; }
.form-card { padding: 30px; text-align: left; }
/* --- GALLERY GRID --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; padding: 20px 5%; }
@media (min-width: 769px) { .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; } }
.gallery-item { border-radius: 10px; overflow: hidden; aspect-ratio: 1/1; cursor: pointer; transition: transform 0.6s ease, filter 0.6s ease; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease, filter 0.6s ease; }
/* Gallery blur in effect */
.gallery-item img {
    filter: blur(4px);
}
.gallery-item.in-view img {
    filter: blur(0);
    transform: scale(1.05);
}
/* --- LIGHTBOX --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.lightbox.show { opacity: 1; }
.lightbox-content { position: relative; top: 50%; transform: translateY(-50%); margin: auto; width: 90%; max-width: 700px; text-align: center; }
.mySlides { display: none; }
.mySlides img { max-height: 80vh; max-width: 100%; border: 3px solid white; border-radius: 5px; }
.close { color: white; position: absolute; top: 20px; right: 30px; font-size: 48px; cursor: pointer; transition: opacity 0.3s ease; }
.close:hover { opacity: 0.7; }
.prev, .next { cursor: pointer; position: absolute; top: 50%; padding: 15px; color: white; font-size: 30px; text-decoration: none; margin-top: -30px; }
.next { right: -50px; } .prev { left: -50px; }
/* --- MOBILE SPECIFIC --- */
@media (max-width: 768px) {
    .hero { background-position: center center; min-height: 70vh; }
    .hero-title { font-size: 2.5rem; }
    .order-card, .testimonial-card, .form-card { width: 100%; max-width: 350px; padding: 28px 20px; }
    .testimonial-grid { padding: 0 10px; }
    .hero-cta { padding: 12px 28px; font-size: 1rem; }
    .social-icons { font-size: 1.8rem; gap: 20px; }
}
/* Fix form readability while keeping glass effect */
.form-card {
    background: rgba(255, 255, 255, 0.92) !important; /* Almost solid but still glassy */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: var(--brown);
    font-weight: 500;
}
.form-group label {
    color: var(--brown);
    font-weight: 600;
}
.btn {
    background: var(--pink);
    color: white;
    border: none;
    font-weight: 700;
}
/* Modern form layout – labels above inputs, no side-by-side */
.form-group {
    margin-bottom: 24px;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--brown);
    font-size: 1rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255,255,255,0.95);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(243,177,182,0.25);
}
/* Custom dropdown arrow – modern look */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236d4135'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}
/* Instagram link fix – remove blue hyperlink look */
.social-link,
.footer-social a {
    color: var(--pink) !important;
    text-decoration: none !important;
}
/* Lightbox close button */
.lightbox .close {
    display: block;
    color: white;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 48px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.lightbox .close:hover {
    opacity: 0.7;
}

/* LARGER LOGO FIX – 100px mobile / 120px desktop */
.nav-logo {
    height: 100px !important;
    width: auto;
    max-height: 100px !important;
}

@media (min-width: 769px) {
    .nav-logo {
        height: 120px !important;
        max-height: 120px !important;
    }
    .brand-name {
        font-size: 2rem !important;
    }
    .nav-left {
        gap: 16px !important;
    }
}