/* ==================================================================
   KUSUMS STUDIO — Custom stylesheet
   Palette: deep rose/maroon #8B1A4A | cream/ivory #FDF6EC | gold #C9A84C
   Fonts:   Playfair Display (headings) | Lato (body)
   ================================================================== */

/* ---------- Design tokens ---------- */
:root {
    --maroon:      #8B1A4A;
    --maroon-dark: #6e1239;
    --cream:       #FDF6EC;
    --gold:        #C9A84C;
    --ink:         #3a2630;
    --muted:       #7a6a72;
    --white:       #ffffff;
    --shadow:      0 6px 22px rgba(139, 26, 74, 0.10);
    --shadow-lg:   0 14px 38px rgba(139, 26, 74, 0.18);
    --radius:      10px;
    --nav-h:       76px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', Arial, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.25;
    color: var(--maroon);
}

a { color: var(--maroon); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }

img { display: block; max-width: 100%; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    padding: 13px 30px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, background .2s ease, color .2s ease;
    text-align: center;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: var(--maroon);
    color: var(--white);
}
.btn-primary:hover { background: var(--maroon-dark); color: var(--white); }

.btn-outline {
    background: transparent;
    color: var(--maroon);
    border-color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    width: 100%;
    padding: 11px 18px;
    font-size: 0.9rem;
}
.btn-whatsapp:hover { background: #1da851; color: var(--white); }
.wa-icon { margin-right: 6px; }

/* ==================================================================
   Header / Navigation
   ================================================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: var(--cream);
    box-shadow: 0 2px 14px rgba(139, 26, 74, 0.08);
    z-index: 1000;
}

.navbar {
    max-width: 1180px;
    margin: 0 auto;
    height: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--maroon);
    letter-spacing: 1px;
}
.brand-tagline {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}
.nav-links a {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--ink);
    padding: 6px 0;
    position: relative;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width .25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--maroon); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Mobile menu toggle (hamburger) */
.nav-toggle-label {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle-label span {
    width: 26px; height: 3px;
    background: var(--maroon);
    border-radius: 2px;
}

/* ==================================================================
   Layout helpers
   ================================================================== */
.site-main { padding-top: var(--nav-h); }

.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 70px 24px;
}
.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 18px;
}
.section-title::after {
    content: "";
    display: block;
    width: 60px; height: 3px;
    background: var(--gold);
    margin: 14px auto 0;
}
.section-lead {
    max-width: 760px;
    margin: 0 auto 26px;
    text-align: center;
    color: var(--muted);
    font-size: 1.05rem;
}
.center { text-align: center; margin-top: 36px; }

/* ==================================================================
   Hero
   ================================================================== */
.hero {
    position: relative;
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(rgba(110,18,57,0.55), rgba(110,18,57,0.65)),
        url('https://www.wholesalecatalog.in/images/product/sub_images/2020/01/Shangrila-Present-Delight-Weeding-Wear-Saress-Catalogue-1.jpg')
        center / cover no-repeat;
    padding: 40px 24px;
}
.hero-content { max-width: 720px; color: var(--cream); }
.hero-eyebrow {
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 10px;
}
.hero-title {
    font-size: 4rem;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 32px;
}

/* ---------- Intro feature cards ---------- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 40px;
}
.feature-card {
    background: var(--white);
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: var(--radius);
    padding: 32px 26px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feature-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.feature-card p { color: var(--muted); }

/* ==================================================================
   Page banner (Products / About / Contact)
   ================================================================== */
.page-banner {
    background: var(--maroon);
    color: var(--cream);
    text-align: center;
    padding: 60px 24px;
}
.page-banner h1 {
    color: var(--white);
    font-size: 2.6rem;
    margin-bottom: 8px;
}
.page-banner p { color: rgba(253, 246, 236, 0.85); }

/* ==================================================================
   Product grid
   ================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.product-card {
    background: var(--white);
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.product-image { position: relative; overflow: hidden; }
.product-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform .4s ease;
}
.product-card:hover .product-image img { transform: scale(1.05); }

.product-category {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
}

.product-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}
.product-name {
    font-size: 1.18rem;
    margin: 0;
}
.product-body .btn-whatsapp { margin-top: auto; }

/* ==================================================================
   Contact page
   ================================================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 44px;
    margin-bottom: 50px;
}
.contact-layout .section-title { text-align: left; }
.contact-layout .section-title::after { margin: 14px 0 0; }

.form-field { margin-bottom: 18px; }
.form-field label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 0.92rem;
}
.form-field input,
.form-field textarea {
    width: 100%;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    padding: 12px 14px;
    border: 1px solid rgba(139, 26, 74, 0.25);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
}
.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18);
}
.form-field textarea { resize: vertical; }

.form-alert {
    padding: 13px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.form-alert-success {
    background: #e7f6ec;
    color: #1f7a3f;
    border: 1px solid #b6e0c4;
}
.form-alert-error {
    background: #fbeaef;
    color: var(--maroon);
    border: 1px solid #f0c2d1;
}

.info-list { list-style: none; margin-bottom: 24px; }
.info-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}
.info-list li:last-child { border-bottom: none; }
.info-list strong {
    display: block;
    color: var(--maroon);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}
.contact-info .btn-whatsapp { width: auto; display: inline-block; }

.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(201, 168, 76, 0.35);
}
.map-wrap iframe { display: block; }

/* ==================================================================
   Footer
   ================================================================== */
.site-footer {
    background: var(--maroon-dark);
    color: rgba(253, 246, 236, 0.85);
    margin-top: 20px;
}
.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 54px 24px 34px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
}
.footer-col h3, .footer-col h4 { color: var(--gold); margin-bottom: 12px; }
.footer-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
}
.footer-desc { font-size: 0.95rem; }
.footer-col p { font-size: 0.93rem; margin-bottom: 6px; }
.footer-col a { color: rgba(253, 246, 236, 0.85); }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.25);
    text-align: center;
    padding: 18px 24px;
    font-size: 0.85rem;
}

/* ==================================================================
   Responsive
   ================================================================== */
@media (max-width: 900px) {
    .product-grid    { grid-template-columns: repeat(2, 1fr); }
    .feature-grid    { grid-template-columns: repeat(2, 1fr); }
    .contact-layout  { grid-template-columns: 1fr; }
    .footer-inner    { grid-template-columns: 1fr 1fr; }
    .hero-title      { font-size: 3rem; }
}

@media (max-width: 640px) {
    /* Mobile navigation */
    .nav-toggle-label { display: flex; }
    .nav-links {
        position: fixed;
        top: var(--nav-h); left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--cream);
        box-shadow: 0 12px 20px rgba(139, 26, 74, 0.12);
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
    }
    .nav-toggle:checked ~ .nav-links { max-height: 320px; }
    .nav-links li { width: 100%; text-align: center; }
    .nav-links a {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    }
    .nav-links a::after { display: none; }

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

    .section        { padding: 50px 20px; }
    .hero-title     { font-size: 2.4rem; }
    .hero-tagline   { font-size: 1.2rem; }
    .section-title  { font-size: 1.6rem; }
    .page-banner h1 { font-size: 2rem; }
}
