/* ==========================================================================
   Evaraa by Ishitha — Coming Soon
   Plain CSS, mobile-first. No framework, no build step.
   Palette matches the brand reference: gold / ivory / champagne / warm
   taupe / deep brown.
   ========================================================================== */

:root {
    --gold: #d4af37;
    --ivory: #fff8f0;
    --champagne: #f3e9d7;
    --warm-taupe: #cbb79c;
    --deep-brown: #4b382b;

    --gold-deep: #a9842a;
    --ink: var(--deep-brown);
    --ink-soft: #7a6a5c;
    --white: #ffffff;
    --border-hairline: rgba(75, 56, 43, 0.16);

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Jost', 'Segoe UI', sans-serif;

    --max-width: 1080px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--ink);
    background: linear-gradient(180deg, var(--ivory) 0%, var(--champagne) 55%, var(--warm-taupe) 130%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

section {
    padding: 4rem 1.25rem;
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin: 0 0 0.75rem;
}

.eyebrow.center {
    text-align: center;
}

/* ---------------------------------- Hero --------------------------------- */

.hero {
    padding: 4.5rem 1.25rem 3.5rem;
    text-align: center;
}

.hero-inner {
    max-width: 640px;
    margin: 0 auto;
}

/* Real H1: kept visually understated (small tracked-out caps) since the full
   brand lockup — name, "by Ishitha", and slogan — is already rendered inside
   the logo image below. This avoids showing the brand name twice while still
   giving the page a real, visible, accessible <h1>. */
.brand-kicker {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin: 0 0 2rem;
}

.hero-logo {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    margin: 0 auto 1.75rem;
}

.tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.05rem, 3vw, 1.35rem);
    color: var(--ink);
    max-width: 34ch;
    margin: 1.75rem auto 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2.25rem;
    padding: 0.55rem 1.4rem;
    border: 1px solid var(--border-hairline);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-deep);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

/* ---------------------------------- Intro -------------------------------- */

.intro {
    padding-top: 0;
    padding-bottom: 3rem;
}

.intro-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.intro p {
    font-size: 1.02rem;
    color: var(--ink-soft);
    margin: 0;
}

/* ------------------------------- Collection ------------------------------ */

.collection {
    background: rgba(255, 255, 255, 0.35);
    border-top: 1px solid var(--border-hairline);
    border-bottom: 1px solid var(--border-hairline);
}

.collection-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.collection h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: var(--ink);
    margin: 0 0 0.5rem;
}

.section-subtitle {
    color: var(--ink-soft);
    margin: 0 0 2.75rem;
    font-size: 0.98rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.collection-card {
    background: var(--white);
    border: 1px solid var(--border-hairline);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.collection-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -12px rgba(75, 56, 43, 0.3);
}

.collection-card .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--champagne);
    color: var(--gold-deep);
    margin-bottom: 1rem;
}

.collection-card .icon svg {
    width: 22px;
    height: 22px;
}

.collection-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    margin: 0 0 0.35rem;
    color: var(--ink);
}

.collection-card p {
    font-size: 0.9rem;
    color: var(--ink-soft);
    margin: 0;
}

/* --------------------------------- Notify -------------------------------- */

.notify {
    text-align: center;
}

.notify-inner {
    max-width: 520px;
    margin: 0 auto;
}

.notify h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.6rem, 4vw, 2rem);
    margin: 0 0 0.75rem;
    color: var(--ink);
}

.notify p {
    color: var(--ink-soft);
    margin: 0 0 2rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    max-width: 300px;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border: 1px solid var(--border-hairline);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.btn-whatsapp {
    background: var(--ink);
    color: var(--ivory);
    border-color: var(--ink);
}

.btn-instagram {
    background: var(--white);
    color: var(--ink);
}

.btn-disabled {
    background: transparent;
    color: var(--ink-soft);
    border-style: dashed;
    cursor: default;
}

.btn-disabled:hover {
    opacity: 1;
    transform: none;
}

/* --------------------------------- Footer -------------------------------- */

.site-footer {
    border-top: 1px solid var(--border-hairline);
    padding: 2.5rem 1.25rem 3rem;
    text-align: center;
}

.footer-inner {
    max-width: 480px;
    margin: 0 auto;
}

.footer-wordmark {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: var(--gold-deep);
    margin: 0 0 0.5rem;
}

.footer-wordmark span {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
    text-transform: uppercase;
    margin-left: 0.4rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin: 0 0 1.25rem;
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--ink-soft);
    opacity: 0.8;
    margin: 0;
}

.footer-copy a {
    color: var(--gold-deep);
    opacity: 1;
}

.footer-copy a:hover {
    text-decoration: underline;
}

/* ------------------------------ Breakpoints ------------------------------ */

@media (min-width: 600px) {
    .social-links {
        flex-direction: row;
        justify-content: center;
    }

    .btn {
        width: auto;
    }
}

@media (min-width: 780px) {
    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1000px) {
    section {
        padding: 5.5rem 1.5rem;
    }
}

/* --------------------------- Reduced motion ------------------------------ */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .collection-card,
    .btn {
        transition: none;
    }
}
