/* Hero CSS - Luxury Hero Section for Ziyorate */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--cream-50);
    overflow: hidden;
    padding-top: 80px; /* Account for fixed navbar */
}

/* Hero Container */
.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Hero Content Grid */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    min-height: 600px;
}

/* Hero Text Section */
.hero-text {
    animation: slideInLeft 0.8s ease-out;
}

.hero-eyebrow {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--gold-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
    font-family: var(--font-body);
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-6xl);
    font-weight: var(--font-light);
    color: var(--green-800);
    line-height: 1.1;
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.title-accent {
    background: linear-gradient(135deg, var(--green-700), var(--green-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--font-medium);
    position: relative;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-500);
    border-radius: 2px;
    animation: expandWidth 1.2s ease 0.6s both;
}

.hero-description {
    font-size: var(--text-xl);
    color: var(--neutral-600);
    line-height: 1.7;
    margin-bottom: var(--space-8);
    max-width: 90%;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
    flex-wrap: wrap;
}

.hero-cta .btn {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
    font-weight: var(--font-medium);
    border-radius: var(--radius-xl);
}

/* Hero Credentials */
.hero-credentials {
    display: flex;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.credential {
    text-align: center;
}

.credential-number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    color: var(--gold-600);
    line-height: 1;
}

.credential-text {
    display: block;
    font-size: var(--text-sm);
    color: var(--neutral-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--space-1);
    font-weight: var(--font-medium);
}

/* Hero Visual Section */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: slideInRight 0.8s ease-out 0.2s both;
}

.hero-image-container {
    position: relative;
    width: 500px;
    height: 600px;
}

.hero-image {
    position: absolute;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-luxury-lg);
    transition: all var(--transition-luxury);
}

.hero-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(27, 77, 62, 0.2);
}

.main-image {
    width: 350px;
    height: 420px;
    top: 0;
    left: 0;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.secondary-image {
    width: 280px;
    height: 340px;
    bottom: 0;
    right: 0;
    z-index: 1;
    animation: float 4s ease-in-out infinite 2s;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    z-index: 3;
}

.price-tag {
    background: var(--gold-500);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    box-shadow: var(--shadow-gold);
    animation: pulse 2s ease-in-out infinite 1s;
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite 3s;
}

.scroll-text {
    display: block;
    font-size: var(--text-xs);
    color: var(--neutral-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-2);
    font-weight: var(--font-medium);
}

.scroll-indicator {
    width: 2px;
    height: 24px;
    background: var(--gold-500);
    margin: 0 auto;
    border-radius: 1px;
    animation: scrollPulse 2s ease-in-out infinite;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-12px); 
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.05); 
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateX(-50%) translateY(0); 
    }
    40% { 
        transform: translateX(-50%) translateY(-8px); 
    }
    60% { 
        transform: translateX(-50%) translateY(-4px); 
    }
}

@keyframes scrollPulse {
    0%, 100% { 
        opacity: 1; 
        transform: scaleY(1);
    }
    50% { 
        opacity: 0.6; 
        transform: scaleY(0.8);
    }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-content {
        gap: var(--space-12);
    }
    
    .hero-title {
        font-size: var(--text-5xl);
    }
    
    .hero-image-container {
        width: 400px;
        height: 500px;
    }
    
    .main-image {
        width: 300px;
        height: 360px;
    }
    
    .secondary-image {
        width: 240px;
        height: 290px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-10);
        text-align: center;
        margin-top: 5%;
    }
    
    .hero-title {
        font-size: var(--text-5xl);
    }
    
    .hero-description {
        font-size: var(--text-lg);
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-credentials {
        justify-content: center;
        gap: var(--space-6);
    }
    
    .hero-image-container {
        width: 350px;
        height: 400px;
    }
    
    .main-image {
        width: 260px;
        height: 310px;
        position: relative;
        top: auto;
        left: auto;
    }
    
    .secondary-image {
        width: 200px;
        height: 240px;
        position: absolute;
        bottom: -20px;
        right: -20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 90px;
    }
    
    .hero-container {
        padding: 0 var(--space-4);
    }
    
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .hero-description {
        font-size: var(--text-base);
    }
    
    .hero-cta .btn {
        padding: var(--space-3) var(--space-6);
        font-size: var(--text-base);
    }
    
    .hero-image-container {
        width: 280px;
        height: 320px;
    }
    
    .main-image {
        width: 220px;
        height: 260px;
    }
    
    .secondary-image {
        width: 160px;
        height: 190px;
    }
}

/* Large Screens */
@media (min-width: 1200px) {
    .hero-content {
        gap: var(--space-20);
    }
    
    .hero-title {
        font-size: var(--text-7xl);
    }
    
    .hero-description {
        font-size: var(--text-xl);
    }
    
    .hero-image-container {
        width: 600px;
        height: 700px;
    }
    
    .main-image {
        width: 420px;
        height: 500px;
    }
    
    .secondary-image {
        width: 340px;
        height: 410px;
    }
}