/* ============================================
   HERO-PREMIUM.CSS - Hero Section Styles
   Çerçeve Atölyesi Premium Website
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* ============================================
   HERO BACKGROUND
   ============================================ */

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__background-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.8) 0%,
        rgba(45, 45, 45, 0.6) 50%,
        rgba(26, 26, 26, 0.8) 100%
    );
    z-index: 2;
}

.hero__background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.4;
}

.hero__background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 3;
}

/* ============================================
   HERO CONTENT
   ============================================ */

.hero__content {
    position: relative;
    z-index: 10;
    padding: 140px 0 100px;
    width: 100%;
}

.hero__main {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* ============================================
   HERO TITLE
   ============================================ */

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.hero__title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.hero__title-line--accent {
    background: linear-gradient(
        135deg,
        #C9A959 0%,
        #E8D39F 50%,
        #C9A959 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.4s;
}

/* ============================================
   HERO SUBTITLE
   ============================================ */

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

/* ============================================
   HERO ACTIONS
   ============================================ */

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

.btn--hero-primary {
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    background: linear-gradient(135deg, #C9A959 0%, #E8D39F 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(201, 169, 89, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn--hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(201, 169, 89, 0.4);
}

.btn--hero-secondary {
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-block;
}

.btn--hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* ============================================
   HERO STATISTICS CARDS
   ============================================ */

.hero__stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.hero__stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    animation: scaleIn 0.6s ease-out forwards;
    opacity: 0;
}

.hero__stat-card--1 {
    animation-delay: 1s;
}

.hero__stat-card--2 {
    animation-delay: 1.2s;
}

.hero__stat-card--3 {
    animation-delay: 1.4s;
}

.hero__stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 169, 89, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero__stat-icon {
    font-size: 2rem;
    color: #C9A959;
    filter: drop-shadow(0 0 10px rgba(201, 169, 89, 0.5));
}

.hero__stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */

.hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 1s ease-out 1.6s forwards;
    opacity: 0;
}

.hero__scroll-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero__scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
    animation: bounce 2s infinite;
}

.hero__scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseWheel 1.5s infinite;
}

/* ============================================
   GLASSMORPHISM EFFECTS
   ============================================ */

.hero__glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
    .hero__content {
        padding: 120px 0 80px;
    }

    .hero__title {
        font-size: clamp(2rem, 6vw, 2.75rem);
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .btn--hero-primary,
    .btn--hero-secondary {
        width: 100%;
        text-align: center;
    }

    .hero__stats {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero__stat-card {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero__content {
        padding: 100px 0 60px;
    }

    .hero__stat-card {
        padding: 20px 24px;
    }

    .hero__stat-number {
        font-size: 1.75rem;
    }

    .hero__scroll-indicator {
        bottom: 24px;
    }
}
