/* ------------------------------------------------
   GLOBAL PAGE STYLE
--------------------------------------------------*/
body {
    background-color: black;
    color: white;
    margin: 0;
    padding: 0;
    font-family: Imprint MT Shadow;
}

/* ------------------------------------------------
   BIG BACKGROUND IMAGE CONTAINER
--------------------------------------------------*/
#image-container {
    position: relative;
    width: 100%;
}

/* BACKGROUND IMAGE (the huge one) */
#logo2 {
    width: 100%;
    height: auto;
    display: block;
}

/* ------------------------------------------------
   HEADER - FIXED WITH SCROLL EFFECT
--------------------------------------------------*/
.header-container {
    position: absolute; /* Start as absolute on the background */
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    box-sizing: border-box;
    background-color: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container.scrolled {
    position: fixed; /* Becomes fixed when scrolled */
    background-color: black;
}

/* ------------------------------------------------
   YOUR MAIN LOGO (top-left)
--------------------------------------------------*/
#logo756 {
    width: 200px;
    height: auto;
}

/* ------------------------------------------------
   NAVIGATION PAGES (center)
--------------------------------------------------*/
.nav-pages {
    display: flex;
    gap: 30px;
}

.nav-pages a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
    font-family: Imprint MT Shadow;
}

.nav-pages a:hover {
    color: Blue;
}

/* ------------------------------------------------
   ICON GROUP (top-right)
--------------------------------------------------*/
.icon-group {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.icon-group a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-group img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* ------------------------------------------------
   BOTTOM SOCIAL ICONS (fixed at bottom-right) - HORIZONTAL
--------------------------------------------------*/
.bottom-social {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: row; /* Horizontal layout */
    gap: 15px;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 15px;
    border-radius: 25px;
}

.bottom-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.bottom-social a:hover {
    transform: translateY(-3px);
}

.bottom-social img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.8));
}

/* Navigation */
nav {
    padding: 20px;
    text-align: center;
    background-color: #333;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}

nav a:hover {
    color: #ccc;
}

/* ------------------------------------------------
   MUSIC PAGE STYLES
--------------------------------------------------*/
.music-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 40px 20px;
    background-color: black;
}

.album-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 400px;
    width: 100%;
}

.album-art {
    width: 300px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.album-title {
    font-size: 32px;
    font-weight: bold;
    color: white;
    margin: 0;
    font-family: Imprint MT Shadow;
}

.stream-button {
    background-color: white;
    color: black;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-family: Imprint MT Shadow;
    min-width: 200px;
    text-align: center;
}

.stream-button:hover {
    background-color: blue;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* ------------------------------------------------
   MOBILE RESPONSIVENESS - UPDATED
--------------------------------------------------*/
@media (max-width: 1200px) {
    .nav-pages {
        gap: 20px;
    }
    
    .nav-pages a {
        font-size: 14px;
    }
    
    .icon-group img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 900px) {
    .header-container {
        padding: 15px 20px;
    }
    
    #logo756 {
        width: 150px;
    }
    
    .nav-pages {
        gap: 15px;
    }
    
    .nav-pages a {
        font-size: 12px;
    }
    
    .icon-group img {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap; /* Allow items to wrap to new lines */
        justify-content: center;
        gap: 15px;
    }
    
    .nav-pages {
        order: 3; /* Move navigation to bottom */
        width: 100%;
        justify-content: center;
        gap: 10px;
    }
    
    .nav-pages a {
        font-size: 11px;
    }
    
    #logo756 {
        width: 120px;
    }
    
    .icon-group {
        gap: 10px;
    }
    
    .icon-group img {
        width: 22px;
        height: 22px;
    }
    
    #image-container {
        padding-top: 120px; /* Adjust for the wrapped header */
    }
    
    /* Bottom social icons mobile */
    .bottom-social {
        position: fixed;
        bottom: 10px;
        right: auto; /* Remove right positioning */
        left: 50%; /* Center horizontally */
        transform: translateX(-50%); /* Center adjustment */
        gap: 10px;
        padding: 8px 12px;
        border-radius: 20px;
    }
    
    .bottom-social img {
        width: 20px;
        height: 20px;
    }
    
    /* Music page mobile */
    .album-art {
        width: 250px;
        height: 250px;
    }
    
    .album-title {
        font-size: 28px;
    }
    
    .stream-button {
        padding: 12px 25px;
        font-size: 16px;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 10px 15px;
    }
    
    .nav-pages {
        gap: 8px;
    }
    
    .nav-pages a {
        font-size: 10px;
    }
    
    #logo756 {
        width: 100px;
    }
    
    .icon-group {
        gap: 8px;
    }
    
    .icon-group img {
        width: 20px;
        height: 20px;
    }
    
    #image-container {
        padding-top: 100px; /* Adjust for smaller wrapped header */
    }
    
    /* Bottom social icons mobile */
    .bottom-social {
        gap: 8px;
        bottom: 5px;
        padding: 6px 10px;
        border-radius: 15px;
    }
    
    .bottom-social img {
        width: 18px;
        height: 18px;
    }
    
    /* Music page mobile */
    .album-art {
        width: 200px;
        height: 200px;
    }
    
    .album-title {
        font-size: 24px;
    }
    
    .stream-button {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 160px;
    }
    
    .music-content {
        padding: 20px 15px;
    }
}

/* ------------------------------------------------
   FOOTER STYLES
--------------------------------------------------*/
.site-footer {
    background-color: #111;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    color: #666;
    font-size: 12px;
    margin-top: 10px;
}

/* Mobile footer */
@media (max-width: 768px) {
    .footer-links {
        gap: 20px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
}

/* ------------------------------------------------
   LEGAL PAGE STYLES
--------------------------------------------------*/
.legal-page {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    min-height: 70vh;
}

.legal-content {
    background-color: #111;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.legal-content h1 {
    color: white;
    font-size: 32px;
    margin-bottom: 10px;
    text-align: center;
}

.legal-content h2 {
    color: white;
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.legal-content h3 {
    color: #ccc;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.legal-content ul {
    color: #ccc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.updated-date {
    color: #888;
    text-align: center;
    font-style: italic;
    margin-bottom: 40px;
}

/* Mobile legal pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 40px 15px;
    }
    
    .legal-content {
        padding: 25px;
    }
    
    .legal-content h1 {
        font-size: 28px;
    }
    
    .legal-content h2 {
        font-size: 20px;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 15px 20px;
    z-index: 1001;
    display: none; /* Hidden by default */
    border-top: 2px solid blue;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text {
    color: white;
    font-size: 14px;
    flex-grow: 1;
}

.cookie-text a {
    color: blue;
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-family: Imprint MT Shadow;
}

.cookie-accept {
    background-color: blue;
    color: white;
}

.cookie-settings {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

/* ------------------------------------------------
   CONTACT PAGE STYLES
--------------------------------------------------*/
.contact-page {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    min-height: 70vh;
}

.contact-content {
    background-color: #111;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-content h1 {
    color: white;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid blue;
}

.contact-item h2 {
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-email {
    color: blue;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.social-contact, .streaming-links {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.social-contact a, .streaming-links a {
    color: blue;
    text-decoration: none;
    padding: 8px 15px;
    background-color: rgba(0, 0, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-contact a:hover, .streaming-links a:hover {
    background-color: blue;
    color: white;
}

.response-note {
    margin-top: 30px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #ff9900;
}

.response-note p {
    color: #ccc;
    font-style: italic;
}

/* Mobile contact page */
@media (max-width: 768px) {
    .contact-page {
        padding: 40px 15px;
    }
    
    .contact-content {
        padding: 25px;
    }
    
    .contact-content h1 {
        font-size: 28px;
    }
    
    .contact-item h2 {
        font-size: 18px;
    }
    
    .social-contact, .streaming-links {
        gap: 10px;
    }
    
    .social-contact a, .streaming-links a {
        padding: 6px 12px;
        font-size: 14px;
    }
}

/* ------------------------------------------------
   TOUR PAGE STYLES - CENTERED
--------------------------------------------------*/
.tour-page-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 40px 20px;
    background-color: black;
}

.tour-content-centered {
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.tour-content-centered h1 {
    color: white;
    font-size: 32px;
    margin-bottom: 30px;
    font-family: Imprint MT Shadow;
}

.no-tours-centered {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    border: 2px dashed #444;
}

.no-tours-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.no-tours-centered h2 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
    font-family: Imprint MT Shadow;
}

.no-tours-centered p {
    color: #ccc;
    font-size: 16px;
}

.signup-section-centered {
    background-color: rgba(0, 0, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid blue;
}

.signup-section-centered h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 15px;
    font-family: Imprint MT Shadow;
}

.signup-section-centered p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Success Message */
.success-message {
    display: none;
    background-color: rgba(0, 255, 0, 0.1);
    color: #4CAF50;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #4CAF50;
    font-weight: bold;
}

/* Form Styles - Centered */
.signup-form-centered {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-centered {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group-centered label {
    color: white;
    margin-bottom: 8px;
    font-weight: bold;
    font-family: Imprint MT Shadow;
}

.form-group-centered input[type="email"],
.form-group-centered select {
    padding: 12px 15px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #222;
    color: white;
    font-size: 16px;
    font-family: Imprint MT Shadow;
}

.form-group-centered input[type="email"]:focus,
.form-group-centered select:focus {
    outline: none;
    border-color: blue;
    box-shadow: 0 0 5px rgba(0, 0, 255, 0.5);
}

.checkbox-group-centered {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    margin: 15px 0;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.checkbox-item label {
    color: white;
    font-weight: normal;
    font-family: Imprint MT Shadow;
}

.submit-btn-centered {
    background-color: blue;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Imprint MT Shadow;
    margin-top: 10px;
    width: 100%;
}

.submit-btn-centered:hover {
    background-color: #0055cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 255, 0.3);
}

.privacy-note {
    color: #888;
    font-size: 14px;
    font-style: italic;
    margin-top: 20px;
    text-align: center;
}

/* Mobile tour page - Centered */
@media (max-width: 768px) {
    .tour-page-centered {
        padding: 20px 15px;
    }
    
    .tour-content-centered h1 {
        font-size: 28px;
    }
    
    .no-tours-centered {
        padding: 30px 20px;
    }
    
    .no-tours-centered h2 {
        font-size: 20px;
    }
    
    .signup-section-centered {
        padding: 20px;
    }
    
    .signup-section-centered h3 {
        font-size: 20px;
    }
    
    .submit-btn-centered {
        padding: 12px 25px;
        font-size: 16px;
    }
}
/* ------------------------------------------------
   HOME PAGE LATEST RELEASE SECTION
--------------------------------------------------*/
.latest-release {
    background-color: black;
    padding: 60px 20px;
}

.release-container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    color: white;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    font-family: Imprint MT Shadow;
}

/* Album and Tracklist Container */
.album-tracklist-container {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

/* Album Cover (Left) */
.album-cover-home {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: center;
}

.album-cover-home img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.stream-button-home {
    background-color: white;
    color: black;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-family: Imprint MT Shadow;
    display: inline-block;
    margin-top: 10px;
}

.stream-button-home:hover {
    background-color: blue;
    color: white;
    transform: translateY(-2px);
}

/* Tracklist Box (Right) */
.tracklist-box {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: #111;
    border-radius: 10px;
    padding: 20px;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.tracklist-box h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    font-family: Imprint MT Shadow;
    border-bottom: 2px solid blue;
    padding-bottom: 10px;
}

.tracklist-scroll {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.tracklist-scroll::-webkit-scrollbar {
    width: 6px;
}

.tracklist-scroll::-webkit-scrollbar-track {
    background: #222;
    border-radius: 3px;
}

.tracklist-scroll::-webkit-scrollbar-thumb {
    background: blue;
    border-radius: 3px;
}

.track-item {
    color: white;
    padding: 12px 15px;
    border-bottom: 1px solid #333;
    font-family: Imprint MT Shadow;
    transition: all 0.3s ease;
}

.track-item:hover {
    background-color: rgba(0, 0, 255, 0.1);
    padding-left: 20px;
}

.track-item:last-child {
    border-bottom: none;
}

/* Home Signup Section */
.home-signup-section {
    background: linear-gradient(135deg, rgba(0, 0, 255, 0.1), rgba(0, 0, 0, 0.8));
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(0, 0, 255, 0.3);
}

.home-signup-section h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 30px;
    font-family: Imprint MT Shadow;
    line-height: 1.4;
}

.success-message-home {
    display: none;
    background-color: rgba(0, 255, 0, 0.1);
    color: #4CAF50;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #4CAF50;
    font-weight: bold;
}

/* Home Signup Form */
.signup-form-home {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.form-group-home {
    flex: 1;
    min-width: 200px;
}

.form-group-home select,
.form-group-home input[type="email"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #222;
    color: white;
    font-size: 16px;
    font-family: Imprint MT Shadow;
}

.form-group-home select:focus,
.form-group-home input[type="email"]:focus {
    outline: none;
    border-color: blue;
    box-shadow: 0 0 5px rgba(0, 0, 255, 0.5);
}

.submit-btn-home {
    background-color: blue;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Imprint MT Shadow;
    min-width: 150px;
}

.submit-btn-home:hover {
    background-color: #0055cc;
    transform: translateY(-2px);
}

.privacy-check {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.privacy-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.privacy-check label {
    color: #ccc;
    font-size: 14px;
}

.signup-note {
    color: #888;
    font-size: 12px;
    margin-top: 20px;
}

.signup-note a {
    color: blue;
    text-decoration: none;
}

/* Mobile Responsiveness for Home Page Sections */
@media (max-width: 768px) {
    .latest-release {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .album-tracklist-container {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }
    
    .album-cover-home,
    .tracklist-box {
        min-width: 100%;
        max-width: 100%;
    }
    
    .tracklist-box {
        height: 350px;
    }
    
    .home-signup-section {
        padding: 25px;
    }
    
    .home-signup-section h3 {
        font-size: 20px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-group-home {
        min-width: 100%;
    }
    
    .submit-btn-home {
        width: 100%;
    }
    
    .stream-button-home {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* ------------------------------------------------
   BIOGRAPHY PAGE STYLES
--------------------------------------------------*/
.biography-page {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    min-height: 70vh;
}

.biography-content {
    background-color: #111;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    /* Ensure content doesn't overflow */
    overflow: hidden;
}

.biography-content h1 {
    color: white;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    font-family: Imprint MT Shadow;
    border-bottom: 3px solid blue;
    padding-bottom: 15px;
}

.bio-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.bio-section h2 {
    color: white;
    font-size: 26px;
    margin-bottom: 20px;
    font-family: Imprint MT Shadow;
    color: blue;
}

.bio-section p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 16px;
}

.song-link {
    color: blue;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.song-link:hover {
    color: white;
    text-decoration: underline;
}

/* Achievements List */
.achievements-list {
    color: #ccc;
    padding-left: 20px;
    margin: 20px 0;
}

.achievements-list li {
    margin-bottom: 12px;
    line-height: 1.5;
    padding-left: 10px;
}

/* ------------------------------------------------
   PHOTO GALLERY - UPDATED FOR RESPONSIVE IMAGES
--------------------------------------------------*/
.photo-gallery {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
    justify-content: center; /* Center the photos */
}

/* Bio Photo Container */
.bio-photo {
    flex: 1;
    min-width: 250px; /* Minimum width for each photo */
    max-width: 400px; /* Maximum width to prevent overflow */
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Make sure images don't overflow */
.bio-photo img {
    width: 100%;
    height: auto;
    max-height: 300px; /* Limit height for consistency */
    object-fit: contain; /* Show entire image without cropping */
    border-radius: 5px;
    margin-bottom: 8px;
    background-color: #222; /* Background for transparent images */
}

.photo-caption {
    color: #888;
    font-size: 14px;
    text-align: center;
    font-style: italic;
    margin-top: 5px;
    width: 100%;
}

/* Special styling for tribute photos */
.tribute-photos .bio-photo {
    min-width: 280px; /* Slightly larger for tribute photos */
}

/* For galleries with 3 photos (Music Journey) */
.photo-gallery:has(.bio-photo:nth-child(3)) .bio-photo {
    min-width: 200px; /* Smaller for 3-photo galleries */
    max-width: 280px;
}

/* ------------------------------------------------
   MORE PICTURES SECTION - FIXED (No cropping)
--------------------------------------------------*/
.more-pictures {
    margin-top: 60px;
    padding: 30px;
    background-color: rgba(0, 0, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid blue;
}

.more-pictures h2 {
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
    font-family: Imprint MT Shadow;
}

/* Updated Picture Grid - Now shows full images */
.picture-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.small-photo {
    background-color: #222;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.small-photo:hover {
    transform: translateY(-5px);
}

/* Show full images without cropping */
.small-photo img {
    width: 100%;
    height: auto;
    max-height: 150px; /* Maximum height but can be smaller */
    object-fit: contain; /* Show entire image without cropping */
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.5); /* Background for transparent images */
}

.small-photo p {
    color: #ccc;
    text-align: center;
    padding: 10px 0 0 0;
    font-size: 14px;
    margin: 0;
    width: 100%;
}

/* ------------------------------------------------
   SPECIAL TRIBUTE SECTION
--------------------------------------------------*/
.special-tribute {
    background-color: rgba(0, 0, 255, 0.05);
    border-left: 4px solid blue;
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
}

.special-tribute h2 {
    color: white;
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
}

.tribute-header h3 {
    color: #ccc;
    font-size: 18px;
    text-align: center;
    font-style: italic;
    margin-bottom: 5px;
}

.dates {
    color: #888;
    text-align: center;
    font-size: 16px;
    margin-bottom: 25px;
    font-family: Imprint MT Shadow;
}

.special-tribute p {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 15px;
}

.tribute-photos {
    margin: 30px 0;
}

.in-memory {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.memory-quote {
    color: white;
    font-size: 18px;
    font-style: italic;
    margin-bottom: 10px;
}

.memory-signature {
    color: blue;
    font-size: 16px;
    font-weight: bold;
}

/* ------------------------------------------------
   RESPONSIVE DESIGN FOR BIOGRAPHY
--------------------------------------------------*/
@media (max-width: 768px) {
    .biography-page {
        padding: 40px 15px;
    }
    
    .biography-content {
        padding: 25px;
    }
    
    .biography-content h1 {
        font-size: 28px;
    }
    
    .bio-section h2 {
        font-size: 22px;
    }
    
    .photo-gallery {
        flex-direction: column;
        align-items: center;
    }
    
    .bio-photo {
        min-width: 100%;
        max-width: 100%;
    }
    
    .bio-photo img {
        max-height: 250px;
    }
    
    .more-pictures {
        padding: 20px;
    }
    
    .more-pictures h2 {
        font-size: 20px;
    }
    
    .picture-gallery {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
    }
    
    .small-photo img {
        max-height: 120px;
    }
}

@media (max-width: 480px) {
    .picture-gallery {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on very small screens */
    }
    
    .bio-photo img {
        max-height: 200px;
    }
    
    .special-tribute {
        padding: 20px;
    }
    
    .special-tribute h2 {
        font-size: 24px;
    }
    
    .small-photo img {
        max-height: 100px;
    }
}