/* Hobbies Hero Section */
.hobbies-hero {
    position: relative;
    height: 300px;
    background:
        linear-gradient(
            135deg,
            rgba(186, 148, 219, 0.15),
            rgba(142, 113, 167, 0.15)
        ),
        url("/media/hero-banner.png") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 80px;
    animation: fadeInDown 1s ease;
}

.hobbies-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(18, 18, 18, 0.4) 100%
    );
    z-index: 1;
}

.hobbies-hero h1 {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: 2px;
    animation: slideUpFade 0.8s ease 0.1s both;
}

.hobbies-hero p {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    color: #e0e0e0;
    animation: slideUpFade 0.8s ease 0.2s both;
}

/* Hobbies Container */
.hobbies-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

/* Hobbies List */
.hobbies-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    animation: fadeInDown 0.8s ease;
}

.hobby-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(186, 148, 219, 0.2);
    animation: slideUpFade 0.6s ease forwards;
    gap: 40px;
}

.hobby-row:last-child {
    border-bottom: none;
}

.hobby-row:nth-child(1) {
    animation-delay: 0.1s;
}
.hobby-row:nth-child(2) {
    animation-delay: 0.15s;
}
.hobby-row:nth-child(3) {
    animation-delay: 0.2s;
}
.hobby-row:nth-child(4) {
    animation-delay: 0.25s;
}
.hobby-row:nth-child(5) {
    animation-delay: 0.3s;
}
.hobby-row:nth-child(6) {
    animation-delay: 0.35s;
}

.hobby-title {
    flex: 0 0 auto;
    min-width: 200px;
}

.hobby-title h3 {
    font-size: 1.2rem;
    color: var(--primary);
    letter-spacing: 0.5px;
    margin: 0;
}

.hobby-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex: 1;
    justify-content: flex-end;
}

.hobby-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--background);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.hobby-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(186, 148, 219, 0.3);
}

.hobby-btn:active {
    transform: translateY(0);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hobbies-hero {
        height: 200px;
        margin-bottom: 50px;
    }

    .hobbies-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .hobbies-hero p {
        font-size: 0.95rem;
    }

    .hobby-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 0;
    }

    .hobby-title {
        min-width: auto;
        width: 100%;
    }

    .hobby-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .hobbies-container {
        padding: 0 20px 50px;
    }
}

@media (max-width: 480px) {
    .hobbies-hero h1 {
        font-size: 1.5rem;
    }

    .hobby-row {
        padding: 16px 0;
    }

    .hobby-title h3 {
        font-size: 1rem;
    }

    .hobby-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .hobby-buttons {
        gap: 10px;
    }
}
