/* ========================================
   PASSION PROJECT PAGE STYLES
   Clean, centered layout with bordered sections
   ======================================== */

   .passion-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* ========================================
   LOGO SECTION - Full-width banner, bordered
   ======================================== */
   .logo-section {
    width: 100%;
    max-width: 900px;              /* match your other sections */
    display: flex;
    justify-content: center;
    padding-top: 1rem;
}

.logo-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;              /* ensures border radius clips image */
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    background: var(--bg-light);

    /* Banner height control (pick one approach) */
    aspect-ratio: 16 / 5;          /* banner shape */
    /* If you don’t want aspect-ratio, remove it and use a fixed height instead:
       height: 200px;
    */
}

.logo-container:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.logo-container img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;             /* fills banner without squishing */
    object-position: center;       /* adjust if you want top/left focus */
}

/* ========================================
   DESCRIPTION SECTION - Bordered box
   ======================================== */
.description-section {
    width: 100%;
    max-width: 900px;
}

.description-content {
    background: var(--bg-medium);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    text-align: center;
}

.description-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.description-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: left;
}

/* ========================================
   SOCIAL LINKS SECTION - Horizontal buttons
   ======================================== */
.social-links-section {
    width: 100%;
    max-width: 900px;
    background: var(--bg-medium);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.social-links-section h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.social-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn-spotify,
.btn-youtube,
.btn-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
    border: none;
    min-width: 220px;
    text-decoration: none;
}

.btn-spotify {
    background: #1DB954;
    color: white;
    box-shadow: 0 4px 12px rgba(29, 185, 84, 0.3);
}

.btn-spotify:hover {
    background: #1ed760;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(29, 185, 84, 0.5);
}

.btn-youtube {
    background: #FF0000;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.btn-youtube:hover {
    background: #cc0000;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(188, 24, 136, 0.3);
}

.btn-instagram:hover {
    background: linear-gradient(45deg, #d17923 0%, #c8582c 25%, #c21733 50%, #b21356 75%, #a20878 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.5);
}

.btn-spotify i,
.btn-youtube i,
.btn-instagram i {
    font-size: 1.4rem;
}

/* ========================================
   PHOTO GALLERY - 2x2 Grid, full photos
   ======================================== */
.photo-gallery {
    width: 100%;
    max-width: 900px;
}

.photo-gallery h2 {
    text-align: center;
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    background: var(--bg-light);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition-normal);
}

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .passion-container {
        padding: 1.5rem 1rem 3rem;
        gap: 2rem;
    }
    .logo-section {
        max-width: 900px;
    }
    .logo-container {
        aspect-ratio: 16 / 7;  /* a little taller on mobile */
    

    .description-content {
        padding: 1.5rem;
    }

    .description-content h2 {
        font-size: 1.5rem;
    }

    .description-content p {
        font-size: 1rem;
    }

    .social-links-section {
        padding: 1.5rem;
    }

    .social-links-section h2 {
        font-size: 1.3rem;
    }

    .social-buttons {
        flex-direction: column;
    }

    .btn-spotify,
    .btn-youtube,
    .btn-instagram {
        width: 100%;
        max-width: 300px;
    }

    .photo-gallery h2 {
        font-size: 1.5rem;
    }

    .gallery-grid {
        gap: 0.75rem;
    }
}