/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
}

:root {
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --background-light: #ffffff;
    --card-bg: #f8f9fc;
    --card-border: #eaedf5;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --header-bg: rgba(255, 255, 255, 0.95);
    --border-radius: 8px;
}

body {
    background-color: var(--background-light);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

main {
    padding-top: 70px; /* Height of header + extra space */
}

/* Header Styles */
header {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 38px;
}

nav {
    display: none;
}

@media (min-width: 992px) {
    nav {
        display: block;
    }
}

nav ul {
    display: flex;
    list-style-type: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 30px;
    list-style: none;
}

nav ul li a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.header-actions {
    display: none;
}

@media (min-width: 992px) {
    .header-actions {
        display: flex;
        align-items: center;
        gap: 20px;
    }
}

.header-icon {
    color: var(--text-primary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-sm:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(59, 130, 246, 0.1);
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    gap: 6px;
}

.mobile-menu-label {
    font-size: 14px;
    font-weight: 500;
}

.mobile-menu-toggle:hover, .mobile-menu-toggle:active {
    background-color: rgba(59, 130, 246, 0.2);
    color: var(--primary-color);
}

/* Improved responsive layout */
@media (max-width: 991px) {
    header nav, .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-container {
        padding: 15px 20px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .container {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .trailer-slider {
        height: 450px;
    }
    
    .trailer-slide-content h3 {
        font-size: 1.5rem;
    }
    
    .trailer-slide-content p {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    .container {
        max-width: 1200px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero {
        height: 70vh;
    }
    
    .trailer-slider {
        height: 600px;
    }
}

/* Fix for very small screens */
@media (max-width: 576px) {
    .trailer-slider {
        height: 350px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .trailer-slide-content h3 {
        font-size: 1.3rem;
    }
    
    .hero-buttons, .trailer-slide-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn, .trailer-slide-buttons .btn {
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background-color: #fff;
    z-index: 999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu-container.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f1f1f1;
    position: relative;
}

.mobile-menu-close {
    background: #f0f4f8;
    border: 1px solid #e0e4e8;
    border-radius: 5px;
    color: #333;
    cursor: pointer;
    width: 48px;
    height: 48px;
    font-size: 24px;
    padding: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 16px;
    top: 24px; /* Further adjusted to align perfectly with the menu bars */
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu-container.active ~ .mobile-menu-close,
.mobile-menu-container.active + .mobile-menu-close {
    display: flex;
}

.mobile-menu-close:hover {
    background: #e0e4e8;
}

/* Search Styles */
.search-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #fff;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    z-index: 990;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 70px; /* Header height */
}

.search-panel.active {
    height: 120px; /* More space for input */
}

@media (max-width: 767px) {
    .search-panel {
        margin-top: 60px; /* Smaller margin on mobile */
    }
    
    .search-panel.active {
        height: 100px;
    }
    
    .search-form {
        padding: 15px;
    }
}

.search-form {
    display: flex;
    align-items: center;
    padding: 20px;
    height: 100%;
    position: relative;
}

.search-input-container {
    flex-grow: 1;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.search-suggestions {
    position: relative;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    height: 500px;
    background-color: white;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    opacity: 0;
    transition: all 0.3s ease;
}

.search-suggestions.active {
    max-height: 300px;
    opacity: 1;
    overflow-y: auto;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: #f5f7fa;
}

.suggestion-item .suggestion-image {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    margin-right: 12px;
    object-fit: cover;
}

.suggestion-item .suggestion-text {
    flex: 1;
}

.suggestion-item .suggestion-title {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.suggestion-item .suggestion-category {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-button:hover {
    background: var(--primary-hover);
}

.search-close {
    border: none;
    background: #f0f4f8;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 15px;
    font-size: 18px;
    transition: all 0.2s ease;
}

.search-close:hover {
    background: #e0e4e8;
}

.mobile-search {
    padding: 25px 15px 15px;
    border-bottom: 1px solid #eee;
    width: 100%;
    margin-top: 10px;
}

.mobile-search-form {
    display: flex;
    position: relative;
    width: 100%;
}

.mobile-search-container {
    position: relative;
    width: 100%;
}

.mobile-search-input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
    background-color: #f5f7fa;
}

.mobile-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.mobile-search-button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 45px;
    background: var(--primary-color);
    border: none;
    border-radius: 0 30px 30px 0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-search-suggestions {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    max-height: 0;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    opacity: 0;
}

.mobile-search-suggestions.active {
    max-height: 250px;
    opacity: 1;
    overflow-y: auto;
}

.focused {
    background-color: #f0f7ff;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-top: 15px;
}

.mobile-menu-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    color: #000;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

.mobile-menu-links a:last-child {
    border-bottom: none;
}

.mobile-menu-links a span {
    color: #888;
    font-size: 18px;
}

/* Hero Section */
.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0;
    padding-top: 0;
    overflow: hidden;
    background: linear-gradient(135deg, 
                rgba(59, 130, 246, 1), 
                rgba(37, 99, 235, 1));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-pattern.svg');
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: white;
    max-width: 600px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Trailer Slider */
.trailer-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, 
                rgba(59, 130, 246, 1), 
                rgba(37, 99, 235, 1));
    background-image: url('../images/hero-pattern.svg'), linear-gradient(135deg, 
                rgba(59, 130, 246, 1), 
                rgba(37, 99, 235, 1));
    margin-top: 0;
    padding-top: 0;
}

.trailer-slider-container {
    position: relative;
    height: 100%;
}

/* Vinyl record styling removed as requested */

.trailer-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    overflow: hidden;
}

.trailer-slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.trailer-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trailer-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 40px 20px 20px;
    z-index: 2;
}

.trailer-slide-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.trailer-slide-content p {
    font-size: 1.2rem;
    margin-bottom: 24px;
    max-width: 600px;
}

.trailer-slide-buttons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.play-icon {
    position: absolute;
    top: -80px;
    left: 20px;
    width: 80px;
    height: 80px;
    background-color: rgba(59, 130, 246, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-icon:hover {
    transform: scale(1.1);
    background-color: var(--primary-color);
}

.slider-navigation {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav-btn.active {
    background-color: white;
    transform: scale(1.2);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Movie Categories */
.categories {
    padding: 70px 0 30px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    border-radius: 4px;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.category-item {
    padding: 10px 20px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
    font-weight: 500;
    color: var(--text-primary);
}

.category-item:hover, .category-item.active {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
    border-color: var(--primary-color);
}

/* Category Trailers */
.category-trailers {
    padding: 20px 0 50px;
}

.trailer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .trailer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.trailer-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.trailer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.trailer-image-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.trailer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trailer-item:hover .trailer-image {
    transform: scale(1.05);
}

.trailer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trailer-item:hover .trailer-overlay {
    opacity: 1;
}

.play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: rgba(59, 130, 246, 0.8);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.trailer-caption {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 16px;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
}

.trailer-caption h3 {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Movie Cards */
.movies {
    padding: 20px 0;
}

.movie-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.movie-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.movie-image-container {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.movie-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.movie-card:hover .movie-image {
    transform: scale(1.05);
}

.movie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                rgba(59, 130, 246, 0.2), 
                rgba(15, 23, 42, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 15px;
}

.movie-card:hover .movie-overlay {
    opacity: 1;
}

.movie-rating {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.movie-details {
    padding: 24px;
    position: relative;
}

.movie-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.movie-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.movie-description {
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.movie-card .btn {
    width: 100%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.movie-card .btn svg {
    width: 18px;
    height: 18px;
}

.watch-all {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* Footer */
.dark-footer {
    background-color: #1e1e1e;
    color: white;
    padding: 25px 0;
    margin-top: 60px;
    text-align: center;
}

.dark-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.dark-footer .footer-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.dark-footer .social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 0;
    order: 1;
}

.dark-footer .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.dark-footer .social-icon:hover {
    transform: translateY(-3px);
}

.dark-footer .social-icon.facebook:hover {
    background-color: #1877f2;
}

.dark-footer .social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.dark-footer .social-icon.youtube:hover {
    background-color: #ff0000;
}

.dark-footer .social-icon.tiktok:hover {
    background: linear-gradient(45deg, #25F4EE, #FE2C55, #000000);
}

.dark-footer .copyright-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
}

.dark-footer .footer-contact {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    padding: 5px 0;
    text-align: left;
    align-self: center;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 767px) {
    .dark-footer .footer-contact {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .dark-footer .footer-contact {
        font-size: 0.55rem;
        padding: 3px 0;
    }
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* New Release Page */
.new-releases {
    padding: 130px 0 50px;
}

/* Our Musician Page */
.musician {
    padding: 130px 0 50px;
}

.musician-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.musician-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
}

.musician-bio {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Us Page */
.about {
    padding: 130px 0 50px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-section {
    margin-bottom: 40px;
}

.about-section h2 {
    margin-bottom: 20px;
    position: relative;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #3b82f6;
}

.about-section p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Media Queries */
@media (min-width: 768px) {
    .movie-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .about-content {
        flex-direction: row;
    }
}

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

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

.section-title-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2em;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

.title-underline {
    width: 60px;
    height: 4px;
    background-color: #3b82f6; /* Tailwind Blue-500 or your blue */
    margin-top: 8px;
    border-radius: 2px;
}

.music-section{
    margin-top: 40px; 
    margin-bottom: 15px;
    font-weight: bold;
}
