/* =============================================
   REINHEIT — INDEX PAGE STYLES  (index.css)
   Depends on: styles.css  (load that first)
   ============================================= */

/* =============================================
   LAYOUT BASE
   ============================================= */
body.home-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Georgia', 'Times New Roman', serif;
}

section {
    width: 100%;
    max-width: 1200px;
}

/* =============================================
   HERO-SPECIFIC ANIMATIONS
   ============================================= */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}
@keyframes lineGrow {
    from { transform: scaleX(0); transform-origin: left; }
    to   { transform: scaleX(1); transform-origin: left; }
}
@keyframes scaling {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(0.5); }
}

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
    position: relative;
    display: flex;
    min-height: auto;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1510 60%, #0a0a0a 100%);
}




/* Hero content pane */
.hero-content {
    padding: 2.5rem 2rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 2;
    flex: 1;
}

/* Logo area */
.top-logo {
    text-align: center;
    margin-bottom: 0.2rem;
    animation: heroFadeUp 0.8s 0.1s both cubic-bezier(0.22, 1, 0.36, 1);
}

.logo {
    width: 130px;
    margin-bottom: 0.5rem;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 900;
    line-height: 1.5;
    color: var(--gold);
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    letter-spacing: 8px;
}

.hero-content h1 span {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--gold);
}

.hero-content .first-p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(0.75rem, 1.7vw, 1.8rem);
    letter-spacing: 4px;
    font-weight: 300;
    color: var(--text-muted);
    margin-top: 0.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.underline { width: 100%; }

/* Taglines */
.taglines {
    text-align: center;
    margin: 0 0 0.6rem;
    animation: heroFadeUp 0.8s 0.3s both cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-content .tagline {
    font-size: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 5px;
    color: var(--gold);
    line-height: 1.5;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
}

.hero-content .subtext {
    text-align: center;
    font-size: clamp(0.75rem, 1.5vw, 1.45rem);
    color: var(--text-muted);
    letter-spacing: 1px;
    line-height: 1.4;
    animation: heroFadeUp 0.8s 0.45s both cubic-bezier(0.22, 1, 0.36, 1);
}

/* Assurance bar */
.assurance {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 1.2rem;
    gap: 0.4rem;
    animation: heroFadeUp 0.8s 0.6s both cubic-bezier(0.22, 1, 0.36, 1);
}

.assur-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
    padding: 0.6rem 0.4rem;
    border: 1px solid rgba(189, 151, 48, 0);
    border-radius: 2px;
    transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s ease;
}
.assur-card:hover {
    border-color: rgba(189, 151, 48, 0.25);
    background: rgba(189, 151, 48, 0.04);
    transform: translateY(-4px);
}
.assur-card .icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.assur-card:hover .icon img { transform: scale(1.15) rotate(-5deg); }

.assur-card p {
    font-size: clamp(0.55rem, 1vw, 0.7rem);
    letter-spacing: 1px;
    color: var(--text-muted);
    line-height: 1.1;
    font-family: Arial, Helvetica, sans-serif;
}

/* Hero image side */
.img-placeholder {
    position: relative;
    overflow: hidden;
    flex: 1;
    animation: heroFadeIn 1.2s 0.2s both;
}
.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: float 6s ease-in-out infinite;
}

/* =============================================
   MAIN CONTENT SECTION
   ============================================= */
.main-content {
    background: linear-gradient(to top, #000, #00000000),
                url("https://i.pinimg.com/1200x/ad/e1/be/ade1be28ffa073ca118fc0fe413b566f.jpg") no-repeat center/cover;
    background-attachment: fixed;
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding-bottom: 10px;
    width: 100%;
    max-width: 1200px;
    border-bottom: 3px solid var(--gold);
}

.content-grid {
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* =============================================
   PRODUCTS HEADINGS
   ============================================= */
.products {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.products h2 {
    position: relative;
    display: inline-block;
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 0.6rem;
    font-family: 'Cormorant Garamond', serif;
    background: linear-gradient(90deg, #8a6e22, #bd9730, #d4af50, #bd9730, #8a6e22);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}

.products h2::before,
.products h2::after {
    position: absolute;
    content: "";
    bottom: 50%;
    background: var(--gold);
    height: 1.5px;
    width: 115px;
    animation: scaling 2s infinite;
}
.products h2::before { left: -130px; transform: translateY(50%); }
.products h2::after  { right: -130px; transform: translateY(50%); }

.products .heading-deco {
    text-align: center;
    display: block;
    width: 200px;
    height: 30px;
    opacity: 0.6;
}

/* =============================================
   PERFUMES SECTION HEADING
   ============================================= */
.perfumes-section-heading {
    text-align: center;
    padding: 1rem 0.2rem 0;
}
.perfumes-section-heading h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 900;
    letter-spacing: 4px;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    background: linear-gradient(90deg, #8a6e22, #bd9730, #d4af50, #bd9730, #8a6e22);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
    margin-bottom: 0.5rem;
    margin-top: 1.2rem;
}

/* =============================================
   FEATURED CARDS GRID (3 perfumes on homepage)
   ============================================= */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 12px;
    margin: 0;
}

.featured-card {
    background: rgba(15, 14, 12, 0.85);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease;
}
.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.featured-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(189, 151, 48, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}
.featured-card:hover::before { opacity: 1; }

.featured-card .img-wrap {
    border-radius: 4px 4px 0 0;
    border: 1px solid transparent;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
    background: radial-gradient(ellipse at 50% 80%, rgba(189, 151, 48, 0.06) 0%, transparent 70%);
    transition: border-color 0.3s ease;
}
.featured-card:hover .img-wrap { border-color: rgba(189, 151, 48, 0.3); }

.featured-card .spotlight {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(189, 151, 48, 0.15), transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.featured-card:hover .spotlight { opacity: 1; }

.featured-card .img-wrap img {
    height: 200px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.7));
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.featured-card:hover .img-wrap img { transform: translateY(-10px) scale(1.04); }

.featured-card .card-body {
    padding: 1rem 1.2rem 1.4rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.featured-card .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--text);
    margin-bottom: 0.2rem;
}
.featured-card .brand {
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}
.featured-card .card-divider {
    width: 30px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 0.8rem;
}

.btn-shop {
    display: inline-block;
    padding: 0.55rem 1.4rem;
    border: 1px solid rgba(189, 151, 48, 0.45);
    color: var(--gold);
    font-size: 0.58rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-shop:hover {
    background: var(--gold);
    color: var(--bg-color);
    border-color: var(--gold);
}

/* =============================================
   WATCHES SECTION
   ============================================= */
.watches-section-heading h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 900;
    letter-spacing: 6px;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    background: linear-gradient(90deg, #8a6e22, #bd9730, #d4af50, #bd9730, #8a6e22);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
    margin-bottom: 0.5rem;
}

.watches { padding: 1rem; }

.watches-grid {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
}

.watch-item {
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.watch-item:hover { transform: translateY(-10px); }

.watch-item .product {
    width: 100px;
    height: 190px;
    border: none;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.watch-item .product img {
    width: 120px;
    height: 350px;
    object-fit: contain;
    filter: drop-shadow(-3px 5px 5px rgba(151, 151, 151, 0.5));
    transition: filter 0.5s ease;
}
.watch-item:hover .product img {
    filter: drop-shadow(-10px 18px 20px rgba(238, 238, 238, 0.4));
}
.watch-item .product-name {
    display: none;
    font-size: 0.58rem;
    letter-spacing: 2px;
    color: #333;
    font-family: 'Georgia', serif;
    font-weight: 700;
}
.to-hide { display: none; }

/* =============================================
   MESSAGE PANEL
   ============================================= */
.message {
    text-align: center;
    padding: 2rem;
    background: #0d0d0d;
    border-left: 1px solid var(--gold);
    position: relative;
    overflow: hidden;
}
.message::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(189, 151, 48, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.message h2 {
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 0.4rem;
    opacity: 0.85;
}
.message p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}
.message .italic-gold {
    display: block;
    font-style: italic;
    color: var(--gold);
    font-size: 20px;
    line-height: 1.1;
    font-family: "Dancing Script", cursive;
}
.message .heart-img {
    width: 90px;
    margin-top: 1rem;
    opacity: 0.85;
}
.message-line {
    width: 40px;
    height: 1px;
    background: var(--gold-dim);
    margin: 1rem auto;
    animation: lineGrow 1s ease both;
}

/* =============================================
   HOMEPAGE FOOTER (richer 3-col layout)
   ============================================= */
footer.home-footer {
    width: 100%;
    max-width: 1200px;
    background: #0d0d0d;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 1.8rem 2.5rem;
    border-top: 2px solid var(--gold-dim);
    gap: 1rem;
    /* override shared footer flex */
    flex-direction: unset;
    flex-wrap: unset;
}

.footer-shop {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.footer-shop h2 {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}
.footer-shop .tagline-footer {
    font-style: italic;
    color: var(--text-muted);
    font-size: clamp(0.75rem, 1.2vw, 0.95rem);
    letter-spacing: 1px;
    font-family: "Dancing Script", cursive;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-align: center;
    border-left: 2px solid var(--gold);
}
.footer-contact .contact-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
}
.footer-contact .whatsapp-row {
    display: flex;
    gap: 0.5rem;
    padding: 0 0.75rem;
}
.footer-contact .whatsapp-row img { width: 42px; height: 42px; }
.footer-contact .phone-number {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1;
    transition: color 0.3s ease;
}
.footer-contact .phone-number:hover { color: var(--gold-light); }
.footer-contact .social-row {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-top: 0.3rem;
}
.footer-contact .social-row p {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    gap: 0.4rem;
    align-items: center;
    padding-left: 0.5rem;
}
.footer-contact span img { width: 0.9rem; height: 0.9rem; }

.footer-badge {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.footer-badge img { width: 110px; height: 110px; object-fit: contain; }

.badge-fallback {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.5rem;
    gap: 0.15rem;
}
.badge-fallback p {
    font-size: 0.5rem;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-family: 'Georgia', serif;
    font-weight: 700;
    line-height: 1.3;
}

/* =============================================
   RESPONSIVE — 800px
   ============================================= */
@media (max-width: 800px) {
    #hero { flex-direction: row; }

    .main-content {
        background: #000;
        grid-template-columns: 1fr;
        gap: 0;
    }
    .content-grid { padding: 2rem 0.5rem; }

    .perfumes {
        background: linear-gradient(to bottom, #000 20%, transparent 10%, #fed 65%),
                    url("https://i.pinimg.com/736x/10/f6/10/10f6103e0011705403a06fc8c429c155.jpg") no-repeat center/cover;
        background-attachment: fixed;
        padding: 1rem;
    }
    .watches {
        background: linear-gradient(to bottom, #000 20%, transparent),
                    url("watch-bg.jpg") no-repeat center/cover;
        background-attachment: fixed;
    }

    .message {
        border-left: none;
        border-top: 3px solid var(--gold);
        padding: 2rem 1.5rem;
    }

    .products h2::before { width: 60px; left: -70px; }
    .products h2::after  { width: 60px; right: -70px; }

    /* Featured grid 2-col on 800 */
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    footer.home-footer {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .footer-shop { align-items: center; }
    .footer-badge { justify-content: center; }
    .footer-contact {
        border-left: none;
        border-top: 1px solid var(--gold);
        border-bottom: 1px solid var(--gold);
        padding: 1rem 0;
    }
}

/* =============================================
   RESPONSIVE — 480px
   ============================================= */
@media (max-width: 480px) {
    #hero {
        flex-direction: column;
        min-height: 100vh;
    }
    .hero-content { padding: 1rem; }
    .hero-content h1 { font-size: 2.4rem; letter-spacing: 4px; }

    .assurance {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    .assur-card { padding: 1rem 0; }
    .heading-deco { display: none; visibility: hidden; }

    /* Featured grid 1-col, 85% wide, centred */
    .featured-grid {
        grid-template-columns: 1fr;
        width: 88%;
        margin: 0 auto;
        gap: 14px;
    }
    .featured-card { width: 100%; }
    .featured-card .img-wrap { height: 220px; }

    /* Watches 2-col */
    .watches-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    .watch-item:nth-child(2n) { padding-left: 10px; }
    .watch-item .product { width: 80px; height: 90px; }
    .to-hide { display: block; }

    .message {
        border: none;
        border-top: 2px solid var(--gold);
    }

    footer.home-footer {
        padding: 1.5rem 1rem;
    }
    .footer-contact .social-row p { padding: 0.3rem 0; }
    .footer-contact .phone-number { font-size: 24px; }
}
