.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);
    }
}

.su-kuyusu-section {
    background: var(--bg-primary);
}

.umre-section {
    background: var(--bg-secondary);
}

.gurcistan-section {
    background: var(--bg-primary);
}

.yurtdisi-section {
    width: 100%;
    padding: 60px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-left {
    padding-right: 20px;
    padding-top: 20px;
    align-self: start;
}

.content-left h2 {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    position: relative;
}

.content-left h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50%;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.content-left p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 20px;
}

.gallery-item {
    aspect-ratio: 0.75;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.umre-gallery {
    aspect-ratio: 1.3;
}

.gurcistan-gallery {
    aspect-ratio: 1.3;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .content-left {
        padding-right: 0;
        text-align: center;
    }

    .content-left h2 {
        font-size: 2rem;
    }

    .content-left h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .gallery {
        padding: 0;
    }
}