.hero {
    background: var(--gradient-dark);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    top: -50%;
    left: -50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.faaliyetler-section {
    background: var(--bg-primary);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    min-height: 400px;
}

.faaliyetler-cards {
    display: flex;
    gap: 30px;
    padding: 20px;
    transition: transform 0.3s ease;
    cursor: grab;
    user-select: none;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.faaliyetler-cards:active {
    cursor: grabbing;
}

.faaliyetler-card {
    flex: 0 0 350px;
    min-width: 350px;
    max-width: 350px;
    background: var(--bg-secondary);
    border-radius: 15px;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.faaliyetler-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faaliyetler-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.faaliyetler-card:hover::before {
    transform: scaleX(1);
}

.faaliyetler-card img {
    width: 100%;
    height: 200px;
    border-radius: 1rem;
    margin-bottom: 20px;
    object-fit: cover;
    border: 3px solid var(--bg-primary);
    flex-shrink: 0;
    aspect-ratio: 1.7;
}

.faaliyetler-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.faaliyetler-card-content h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 600;
    flex-shrink: 0;
}

.faaliyetler-card-content p {
    line-height: 1.6;
    color: var(--text-secondary);
    font-size: 0.95em;
    flex: 1;
    overflow: hidden;
}

.cta-button {
    font-size: 1rem;
    margin-top: 1.5rem;
    flex-shrink: 0;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2em;
    color: #667eea;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn {
    left: -10px;
}

.next-btn {
    right: -10px;
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%) scale(0.9);
}

.dots-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

@media (min-width: 1200px) {
    .faaliyetler-card {
        flex: 0 0 380px;
        min-width: 380px;
        max-width: 380px;
    }
}

@media (min-width: 1400px) {
    .faaliyetler-card {
        flex: 0 0 400px;
        min-width: 400px;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .faaliyetler-cards {
        padding: 15px;
        gap: 20px;
    }

    .faaliyetler-card {
        flex: 0 0 300px;
        min-width: 300px;
        max-width: 300px;
        padding: 20px;
    }

    .faaliyetler-card img {
        height: 180px;
        margin-bottom: 15px;
    }

    .faaliyetler-card-content h3 {
        font-size: 1.3em;
        margin-bottom: 12px;
    }

    .faaliyetler-card-content p {
        font-size: 0.9em;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .cta-button {
        font-size: 0.9rem;
        margin-top: 1rem;
        padding: 10px 15px;
    }

    .section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1em;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .faaliyetler-card {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
        padding: 18px;
    }

    .faaliyetler-card img {
        height: 160px;
    }

    .faaliyetler-card-content h3 {
        font-size: 1.2em;
    }

    .faaliyetler-card-content p {
        font-size: 0.85em;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1em;
    }

    .prev-btn {
        left: 2px;
    }

    .next-btn {
        right: 2px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .faaliyetler-card {
        flex: 0 0 340px;
        min-width: 340px;
        max-width: 340px;
    }
}