﻿/* initial-section.css - Hero Section Styles */

/* Hero Section Container */
.hero-initial-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('~/Content/Images/OrigMango.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

/* Container */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Content */
.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

/* Badge */
.hero-badge {
    display: inline-block;
    background: rgba(212, 161, 62, 0.2);
    backdrop-filter: blur(10px);
    color: #d4a13e;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1px solid rgba(212, 161, 62, 0.3);
    animation: fadeInUp 0.8s ease;
}

/* Title */
.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-highlight {
    color: #d4a13e;
    position: relative;
    display: inline-block;
}

    .hero-highlight::after {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 0;
        width: 100%;
        height: 12px;
        background: rgba(212, 161, 62, 0.3);
        z-index: -1;
        border-radius: 10px;
    }

/* Description */
.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #d4a13e, #b87c2e);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 161, 62, 0.3);
    border: none;
    cursor: pointer;
}

    .hero-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(212, 161, 62, 0.4);
        color: white;
        text-decoration: none;
    }

.hero-btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid white;
    cursor: pointer;
}

    .hero-btn-secondary:hover {
        background: white;
        color: #1a3a1a;
        transform: translateY(-3px);
        text-decoration: none;
    }

/* Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #d4a13e;
    margin-bottom: 5px;
}

.hero-stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    animation: bounce 2s infinite;
}

    .hero-scroll-indicator span {
        display: block;
        color: white;
        font-size: 12px;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0.7;
    }

.hero-scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
}

    .hero-scroll-mouse::before {
        content: '';
        width: 4px;
        height: 8px;
        background: white;
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
        animation: scrollWheel 1.5s infinite;
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 44px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-stat-number {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hero-initial-section {
        min-height: 90vh;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-highlight::after {
        bottom: 4px;
        height: 8px;
    }

    .hero-description {
        font-size: 15px;
        padding: 0 15px;
    }

    .hero-buttons {
        gap: 15px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-number {
        font-size: 24px;
    }

    .hero-stat-label {
        font-size: 12px;
    }

    .hero-scroll-indicator {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 80%;
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .hero-scroll-mouse {
        width: 22px;
        height: 38px;
    }
}
