/* Hero Section Styles - Mobile-First */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    overflow: hidden;
    padding-top: 70px;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--spacing-xl) var(--container-padding);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content {
    color: var(--text-primary);
    animation: slideInUp 1s ease-out;
    order: 2;
}

.hero-title {
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    border-radius: var(--radius-sm);
}

.hero-subtitle {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
    max-width: 100%;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInUp 1s ease-out 0.3s both;
    order: 1;
}

.hero-image-frame {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: var(--radius-xl);
    z-index: -1;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
}

.hero-image-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(208, 150, 112, 0.1));
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(208, 150, 112, 0.1), transparent);
    border-radius: var(--radius-full);
    animation: float 6s ease-in-out infinite;
}

.decoration-dots {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    opacity: 0.3;
}

.decoration-dots::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: var(--radius-full);
    box-shadow: 
        15px 0 var(--primary-gold),
        30px 0 var(--primary-gold),
        0 15px var(--primary-gold),
        15px 15px var(--primary-gold),
        30px 15px var(--primary-gold),
        0 30px var(--primary-gold),
        15px 30px var(--primary-gold),
        30px 30px var(--primary-gold);
    animation: twinkle 2s infinite alternate;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

@keyframes twinkle {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

/* Tablet View */
@media (min-width: 768px) {
    .hero {
        padding-top: 80px;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-3xl);
        text-align: left;
        padding: var(--spacing-2xl) var(--container-padding);
    }
    
    .hero-content {
        order: 1;
        animation: slideInLeft 1s ease-out;
    }
    
    .hero-image {
        order: 2;
        animation: slideInRight 1s ease-out;
    }
    
    .hero-title {
        font-size: var(--text-5xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-lg);
        max-width: 500px;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
        gap: var(--spacing-lg);
    }
    
    .hero-buttons .btn {
        width: auto;
        min-width: 180px;
    }
    
    .hero-image-frame {
        width: 350px;
        height: 350px;
    }
    
    .decoration-circle {
        width: 120px;
        height: 120px;
    }
    
    .decoration-dots {
        width: 80px;
        height: 80px;
    }
}

/* Desktop View */
@media (min-width: 1024px) {
    .hero-container {
        gap: var(--spacing-5xl);
    }
    
    .hero-title {
        font-size: var(--text-6xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-xl);
    }
    
    .hero-image-frame {
        width: 400px;
        height: 400px;
    }
    
    .decoration-circle {
        width: 150px;
        height: 150px;
        top: 10%;
    }
    
    .decoration-dots {
        width: 100px;
        height: 100px;
    }
    
    .decoration-dots::before {
        width: 4px;
        height: 4px;
        box-shadow: 
            20px 0 var(--primary-gold),
            40px 0 var(--primary-gold),
            0 20px var(--primary-gold),
            20px 20px var(--primary-gold),
            40px 20px var(--primary-gold),
            0 40px var(--primary-gold),
            20px 40px var(--primary-gold),
            40px 40px var(--primary-gold);
    }
}

/* Tablet/Desktop Animations */
@media (min-width: 768px) {
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

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

/* Special Effects */
.hero-content > * {
    animation-fill-mode: both;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* Hover Effects */
.hero-image-frame:hover img {
    transform: scale(1.05);
}

.hero-image-frame:hover {
    box-shadow: 0 25px 50px rgba(208, 150, 112, 0.4);
}

@keyframes scrollIndicator {
    0%, 100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(10px);
    }
}

/* Mobile-specific optimizations */
@media (max-width: 767px) {
    .hero {
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: var(--text-3xl);
        line-height: 1.2;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-subtitle {
        font-size: var(--text-sm);
        margin-bottom: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
    }
    
    .hero-image-frame {
        width: 240px;
        height: 240px;
    }
    
    .decoration-circle {
        width: 60px;
        height: 60px;
        top: 10%;
        right: 5%;
    }
    
    .decoration-dots {
        width: 50px;
        height: 50px;
        bottom: 15%;
        left: 5%;
    }
    
    .decoration-dots::before {
        width: 2px;
        height: 2px;
        box-shadow: 
            10px 0 var(--primary-gold),
            20px 0 var(--primary-gold),
            0 10px var(--primary-gold),
            10px 10px var(--primary-gold),
            20px 10px var(--primary-gold),
            0 20px var(--primary-gold),
            10px 20px var(--primary-gold),
            20px 20px var(--primary-gold);
    }
}