﻿
/* -------------------------- */
/* --- NEW NAV BAR STYLES --- */
/* -------------------------- */
.navbar {
    display: flex; 
    justify-content: center; 
    padding: 1px 0;
    margin-bottom: 2px;
    background: transparent; 
    border: none;
    box-shadow: none;
}

.nav-button {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1.1em;
    padding: 2px 8px; 
    margin: 0 12px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    white-space: nowrap;
    background: linear-gradient(to bottom, #f2f2f2, #cccccc, #b3b3b3);
    border: 1px solid #aaa;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    text-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.7), 
        0 -1px 0 rgba(0, 0, 0, 0.2); 
}

.nav-button:hover {
    background: #7B4A6A; 
    color: white;
    box-shadow: none; 
    text-shadow: none; 
}
/* ------------------------------ */
/* --- END NEW NAV BAR STYLES --- */
/* ------------------------------ */

/* ------------------------------ */
/* --- NAV BAR STYLES - MOBILE ---*/
/* ------------------------------ */
@media (max-width: 768px) { /* padding: 10px 5px; margin-bottom: 15px; */ 
    .navbar {
        flex-wrap: nowrap; 
        padding: px 5px;
        margin-bottom: 1px;
    }
    
    .nav-button {
        /* Ensuring mobile buttons also use the shorter padding padding: 5px 15px; */
        padding: 2px 8px;
        font-size: .81em;
        margin-top: 0px;
        margin: 0 2px;
    }
}
/* ------------------------------ */
/* --- NAV BAR STYLES - MOBILE ---*/
/* ------------------------------ */

/* ------------------------------ */
/* ---                         ---*/
/* ------------------------------ */
.profile-header {
    width: 100%;
    background-color: #33211c; 
    color: white;
    padding-top: 50px;
    padding-bottom: 5px; 
    position: relative;
    overflow: hidden;
    background-image: url('data/images/background_01.jpg'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
}

.background-images {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    padding: 10px 0 0 10px;
    position: relative;
    z-index: 1;
}

.background-image-item {
    width: 100px;
    height: 70px;
    background-color: #555; 
    border: 1px solid #777;
    background-size: cover; 
    background-position: center;
}

.main-content {
    display: flex;
    align-items: flex-end;
    margin-top: -35px;
    position: relative;
    z-index: 2;
}

.banner-container {
    display: flex;
    max-width: 1200px;
    width: 100%; 
    padding-top: 0px; 
    padding-bottom: 0px; 
    padding-left: 0px;
    padding-right: 0px;
    justify-content: center;
    align-items: flex-start;
    gap: 15px; /* Add spacing between the main-title and secondary-text */
}

.main-title {
    font-family: 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); 
    color: #000;
    padding-right: 0px;
    white-space: nowrap; 
    flex-shrink: 0;
    margin-top: 0px;
    margin-bottom: 0px;
    /* FIX: REMOVE THE MANUAL MARGINS THAT PREVENTED CENTERING */
    **margin-left: 0;** /* Was 20px, remove to allow true centering */
    **margin-right: 0;** /* Was 10px, remove to allow true centering */
}

.secondary-text {
    margin-bottom: 0; 
    line-height: 1.2;
    padding-top: 5px; 
    padding-left: 10px;
    border-left: 2px solid #ccc; 
    margin-left: 0px;
}

.about-text {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    padding: 1px; 
}

.center-block {
    text-align: center;
}

.secondary-text .dvd-text {
    font-size: 0.9em;
    font-weight: bold;
    color: #000;
    margin: 0;
    text-transform: none; 
}

.secondary-text .artist-teacher {
    font-size: 0.7em;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    color: #666;
    margin-top: 2px;
    text-transform: none; 
}

.button-container {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 15px;
}

.video-link-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    background-color: #7B4A6A;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.video-link-button:hover {
    background-color: #aa0000;
    transform: translateY(-2px);
}
    
.video-link-button:active {
    transform: translateY(0);
}

.testing {
    width:auto;
    height:80px;
    cursor:pointer;
}

/* ---------------------------------- */
/* --- MOBILE ADJESTMENTS         --- */
/* ---------------------------------- */
@media (max-width: 768px) {
    .banner-container {
        flex-direction: column; 
        align-items: center;
        padding: 0;
    }
    .main-title {
        font-size: 8vw;
        padding-right: 0;
        text-align: center;
        margin-bottom: -20px;
        white-space: normal;
    }
    .secondary-text {
        border-left: none; 
        padding-left: 0;
        margin-left: 0;
        margin-bottom: -10px;
    }
    .center-block {
        text-align: center;
    }
    header {
        padding-top: 10px;
        padding-bottom: 0px;
    }
    body {
        margin: 0; 
    }
    .about-text {
        width: 90%;
        font-size: 3.5vw;
    }
    .button-container {
        text-align: center;
        margin-top: 0px;
        margin-bottom: 15px;
    }
    .video-link-button {
        display: inline-block;
        padding: 15px 30px;
        font-size: 1.3em;
        font-weight: bold;
        color: white;
        background-color: #7B4A6A;
        border: none;
        border-radius: 8px;
        text-decoration: none;
        cursor: pointer;
        transition: background-color 0.3s, transform 0.1s;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    .video-link-button:hover {
        background-color: #aa0000;
        transform: translateY(-2px);
    }
    .video-link-button:active {
        transform: translateY(0);
    }
    .video-container {
        padding: 20px;
    }
    .testing {
        width:auto;
        height:40px;
        cursor:pointer;
    }
}
/* ---------------------------------- */
/* --- MOBILE ADJESTMENTS         --- */
/* ---------------------------------- */


/* ---------------------------------- */
/* --- NEW IMAGE STYLES (MODIFIED for 64px size and centering) --- */
/* ---------------------------------- */
.artist-dates {
    display: inline-flex; /* Use flex to align text and image */
    align-items: center; /* Vertically center the items */
}

.date-text {
    font-size: 1.2em; 
}

.artist-dates img {
    height: 64px; /* Explicitly set the size */
    width: 64px;  /* Explicitly set the size */
    margin-left: 8px; /* Space between text and image */
}
/* ---------------------------------- */
/* --- END NEW IMAGE STYLES --- */
/* ---------------------------------- */

/* ---------------------------------- */
/* --- Video Grid Styles (Retained) --- */
/* ---------------------------------- */
.video-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px; 
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    width: 100%;
    padding-top: 56.25%; 
    position: relative;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    padding: 15px;
}

.video-info h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333;
}

.video-info p {
    font-size: 0.9em;
    color: #666;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.video-info a {
    display: inline-block;
    margin-top: 10px;
    color: #cc0000;
    text-decoration: none;
    font-weight: bold;
}

.video-info a:hover {
    text-decoration: underline;
}

#loading-message {
    text-align: center;
    padding: 50px;
    font-size: 1.2em;
    color: #999;
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%; 
    border: 5px solid white;
    background-color: #ccc; 
    margin-left: 35px;
    margin-top: 15px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    background-size: cover;
    background-position: center;
    background-image: url('data/images/helen.png');
}

hr {
    width: 100%; 
    border: 0;
    height: 2px;
    background-color: #ccc; 
}

body {
    font-family: Arial, sans-serif;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    background-color: #f4f4f4;
    color: #333;
}


/* -------------------------- */
/* GLOBAL VALUES              */
/* -------------------------- */
header {
    text-align: center;
    padding-top:20px;
    padding-bottom:0px;
    background-color: lightlightgray;
    border-bottom: 0px;
    margin-bottom: 0px;
    display: flex;
    justify-content: center; /* KEEP: Centers the banner-container horizontally */
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}
/* -------------------------- */
/* GLOBAL VALUES              */
/* -------------------------- */

/* ------------------------------------ */
/* --- NEW VIDEO OVERLAY STYLES     --- */
/* ------------------------------------ */
#videoContainer iframe {
    width: 320px;   /* Matches the width in your loadYouTubePlayer() function */
    height: 180px;  /* Matches the height in your loadYouTubePlayer() function */
    display: block; /* Removes any default space below the iframe */
    border: 4px solid black;
}
/* ------------------------------------ */
/* --- END NEW VIDEO OVERLAY STYLES --- */
/* ------------------------------------ */


