/* CSS Variables */
:root {
    --primary-blue: #1a1a2e;
    --secondary-blue: #16213e;
    --text-light: #f8f9fa;
    --accent-color: rgba(255, 255, 255, 0.1);
}

/* Base Styles */
body {
    font-family: 'Crimson Text', serif;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--text-light);
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Homemade Apple', cursive;
}

/* Header Styles */
.main-header {
    text-align: center;
    padding: 3rem 0 2rem 0;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.header-content {
    position: relative;
    z-index: 2;
}

.album-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-direction: column;
}

.album-cover {
    flex-shrink: 0;
}

.album-cover img {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.album-info {
    text-align: center;
}

.artist-name {
    font-size: 1.3rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.main-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.header-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 1rem;
    font-style: italic;
}

.listen-now-text {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    letter-spacing: 2px;
}

.listen-button-container {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.listen-button {
    font-size: 1.2rem;
    padding: 1rem 3rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.listen-button:hover {
    text-decoration: none;
    background: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Vinyl Section Styles */
.vinyl-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.vinyl-info-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vinyl-info-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.vinyl-info-box p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.vinyl-button {
    font-size: 1.1rem;
    padding: 0.9rem 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.vinyl-button:hover {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.25);
    color: var(--text-light);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
}

.vinyl-button i {
    margin-right: 0.5rem;
}

/* About Section Styles */
.about-section {
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-light);
}

.about-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-signature {
    font-style: italic;
    text-align: right;
    margin-top: 2rem;
    font-size: 1.2rem;
}

/* Music Videos Header */
.music-videos-header {
    margin-top: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.music-videos-header h2 {
    font-size: 2.2rem;
    color: var(--text-light);
}

/* Featured Video Styles */
.featured-video {
    margin-bottom: 4rem;
    padding-top: 0;
}

.featured-video h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.featured-video .video-info {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.featured-video .video-date {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.video-credits {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.video-credits h4 {
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-family: 'Crimson Text', serif;
}

.video-description-credits {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-style: italic;
}

/* Video Container Styles */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 1rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* YouTube Link Styles */
.youtube-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.youtube-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Video Grid Section */
.video-grid-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.video-grid-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--text-light);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.video-grid-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-grid-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.video-grid-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-grid-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-grid-item:hover .video-grid-thumbnail img {
    transform: scale(1.05);
}

.video-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-grid-item:hover .video-grid-overlay {
    opacity: 1;
}

.video-grid-overlay i {
    font-size: 4rem;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.video-grid-info {
    padding: 1.25rem;
}

.video-grid-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-family: 'Homemade Apple', cursive;
    line-height: 1.3;
}

.video-grid-musical {
    font-size: 0.95rem;
    opacity: 0.85;
    font-style: italic;
}

.video-grid-date {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.4rem;
}

/* Modal Styles */
.modal-content {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    font-family: 'Homemade Apple', cursive;
    font-size: 1.5rem;
}

.modal-title small {
    font-family: 'Crimson Text', serif;
    color: #ffffff;
}

.modal-body {
    padding: 2rem;
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem 0 2rem 0;
    margin-top: 4rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    border: 3px solid rgba(255, 255, 255, 0.2);
    object-fit: cover;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    opacity: 0.7;
    color: var(--text-light);
    transform: translateY(-2px);
    text-decoration: none;
}

.footer-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1.5rem;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .main-header h1 {
        font-size: 4rem;
    }
    
    .album-header {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .album-cover img {
        width: 300px;
        height: 300px;
    }
    
    .album-info {
        text-align: center;
        flex: 1;
    }
    
    .featured-video h3 {
        font-size: 2.5rem;
    }
    
    .profile-pic {
        width: 120px;
        height: 120px;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 2.5rem;
    }
}

@media (min-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}