/* Hero Bölümü */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

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

.hero-swiper .swiper-slide {
    background-size: cover;
    background-position: center 30%;
    width: 100%;
    height: 100%;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: var(--font-size-6xl);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-family: var(--font-body);
    font-size: var(--font-size-xl);
    margin-bottom: 2rem;
    color: var(--color-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    font-family: var(--font-primary);
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: var(--font-size-base);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px var(--shadow-color);
}

.btn-secondary {
    background-color: var(--color-grey);
    color: var(--color-light);
}

.btn-secondary:hover {
    background-color: var(--color-dark);
}

.hero .social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    z-index: 2;
}

.hero .social-links a {
    color: var(--color-light);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0.8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .social-links a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: var(--font-size-5xl);
    }

    .hero-content p {
        font-size: var(--font-size-lg);
    }

    .hero .social-links {
        gap: 1rem;
        margin-top: 1rem;
    }

    .hero .social-links a {
        font-size: var(--font-size-xl);
    }
} 