/* === VARIABLES === */
:root {
    --navy: #1a2744;
    --blue: #2e7bbf;
    --green: #3cb44b;
    --white: #ffffff;
    --cream: #faf7f2;
    --warm-gray: #6b5e53;
    --light-tan: #f0e8dc;
    --border: #d4c5b3;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', -apple-system, sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font-body); color: var(--navy); background: var(--cream); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }

/* === LAYOUT === */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--light-tan); }
.section-intro { text-align: center; max-width: 600px; margin: 0 auto 2.5rem; color: var(--warm-gray); }

h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--navy);
    position: relative;
    padding-bottom: 0.75rem;
}
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--green);
}

/* === BUTTON === */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--green);
    color: var(--white);
    font-weight: 700;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s, transform 0.2s;
}
.btn:hover { background: #2f9a3d; transform: translateY(-1px); }

/* === HEADER === */
.header {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navy);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.5rem 1.5rem;
}
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo img { height: 50px; width: auto; border-radius: 4px; }
.logo-text { color: var(--white); font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; }
.nav { display: flex; gap: 1.5rem; }
.nav a {
    color: var(--white);
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.2s;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--green); border-bottom-color: var(--green); }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/1000036952-1320x990.webp') center/cover no-repeat;
    padding: 2rem;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 39, 68, 0.7);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
}
.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.tagline {
    font-size: 1.4rem;
    color: var(--green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* === ABOUT === */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2.5rem;
}
.about-image img { border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.about-text p { margin-bottom: 1rem; color: var(--warm-gray); }
.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-links a { color: var(--navy); transition: color 0.2s; }
.social-links a:hover { color: var(--blue); }

/* === PRODUCTS === */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}
.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.08); }
.product-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.product-card h3 { font-family: var(--font-heading); margin-bottom: 0.5rem; color: var(--navy); }
.product-card p { color: var(--warm-gray); font-size: 0.9rem; }

/* === GALLERY === */
.order-frame { width: 100%; margin-top: 2rem; }
.order-frame iframe { width: 100%; height: 80vh; border: 1px solid var(--border); border-radius: 8px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 1;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.05); }

/* === FAQ === */
.faq-list { max-width: 700px; margin: 2.5rem auto 0; }
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
}
.faq-item summary {
    font-weight: 700;
    cursor: pointer;
    font-size: 1.05rem;
    color: var(--navy);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--green); }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-top: 0.75rem; color: var(--warm-gray); }

/* === CONTACT FORM === */
.contact-form {
.contact-info { width: 100%; text-align: center; margin: 0 auto 2rem; font-size: 1.05rem; display: flex; flex-direction: column; align-items: center; }
.contact-info p { margin-bottom: 0.5rem; }
.contact-info a { color: var(--blue); }
.venmo-qr { margin-top: 0.5rem; border-radius: 4px; }
.venmo-info { text-align: center; margin-top: 5.5rem; display: flex; flex-direction: column; align-items: center; }

    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--cream);
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-status { margin-top: 1rem; font-weight: 700; }
.form-status.success { color: var(--green); }
.form-status.error { color: #c0392b; }

/* === FOOTER === */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.8);
    text-align: center;
    padding: 3rem 1.5rem;
}
.footer-logo { height: 60px; margin: 0 auto 1rem; border-radius: 4px; }
.footer-tagline { font-style: italic; margin: 0.25rem 0 0.5rem; opacity: 0.7; }
.footer-email { color: rgba(255,255,255,0.8); }
.footer-email:hover { color: var(--green); }
.footer .social-links { justify-content: center; margin-bottom: 1.5rem; }
.footer .social-links a { color: rgba(255,255,255,0.7); }
.footer .social-links a:hover { color: var(--green); }
.copyright { font-size: 0.85rem; opacity: 0.6; }

/* === LIGHTBOX === */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: 4px; }
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }
.lightbox-close { top: 1rem; right: 1.5rem; font-size: 3rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0.75rem;
        display: none;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav.open { display: flex; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

    .hero-content h1 { font-size: 2.2rem; }
    .tagline { font-size: 1.1rem; }
    .about-content { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    h2 { font-size: 1.8rem; }
    .contact-form { padding: 1.5rem; }
}
