/**
 * Hero Section Styles
 * Extracted from front.html for SWELL child theme
 */

/* CSS Variables */
:root {
    --black-deep: #050505;
    --black-matte: #0a0a0a;
    --black-soft: #111111;
    --charcoal: #1a1a1a;
    --charcoal-light: #252525;
    --gold-primary: #c9a227;
    --gold-bright: #d4af37;
    --gold-pale: #e8d5a3;
    --cream: #f5f0e6;
    --cream-dark: #e8e0d0;
    --white-soft: #fafaf8;
    --text-muted: #6a6a6a;
    --text-light: #999999;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0 4rem 6rem;
    overflow: hidden;
    background: #000;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--black-deep) 0%, transparent 40%),
                linear-gradient(0deg, var(--black-deep) 0%, transparent 50%);
    z-index: 2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(20%) contrast(1.1);
    opacity: 0;
    animation: heroImageReveal 2s ease forwards 0.5s;
}

@keyframes heroImageReveal {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.85;
        transform: scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.hero-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards 0.8s;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards 1s;
}

.hero-title span {
    display: block;
    color: var(--gold-primary);
    font-style: italic;
}

.hero-subtitle {
    font-family: 'Shippori Mincho', serif;
    font-size: 1rem;
    font-weight: 400;
    color: #f7f7f7;
    line-height: 2;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards 1.2s;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards 1.4s;
}

.hero-cta:hover {
    background: var(--gold-primary);
    color: var(--black-deep);
}

.hero-cta svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.hero-cta:hover svg {
    transform: translateX(5px);
}

/* Decorative elements */
.hero-deco {
    position: absolute;
    bottom: 6rem;
    right: 4rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards 1.6s;
}

.hero-deco-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary));
}

.hero-deco-text {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 1.5rem 4rem;
        min-height: 600px;
    }

    .hero-bg {
        width: 100%;
        /*opacity: 0.5;*/
    }

    .hero-deco {
        display: none;
    }
}
