/* Import custom font */
@font-face {
    font-family: 'Meposa';
    src: url('meposa.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Meposa', 'Inter', sans-serif;
    color: white;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    background-color: black;
}

/* Background Video */
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Dimmed background video for non-homepage pages */
.background-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Remove dimming from homepage */
.homepage-video::after {
    display: none;
}

.background-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand a {
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

.nav-brand a:hover {
    color: #a0522d;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu a:hover {
    color: #a0522d;
}

.nav-menu a.current-page {
    color: #a0522d !important;
    font-weight: 600;
}

.nav-menu i {
    font-size: 1.2rem;
    vertical-align: middle;
    line-height: 1;
}

/* Apple Music Icon */
.apple-music-icon {
    width: 18px;
    height: 18px;
    border-radius: 2px;
    display: inline-block;
    background-image: url('images/apple-music-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 2px;
    transition: filter 0.3s ease;
}

.nav-menu a:hover .apple-music-icon {
    background-image: url('images/apple-music-icon-hover.svg');
}

/* Main Content */
.main-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Hero Banner */
.hero-banner {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem;
    border-radius: 12px;
}

.hero-banner:hover {
    transform: scale(1.02);
}

.banner-image {
    background: url('images/releases.png') center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    aspect-ratio: 16/8;
}

.banner-text {
    color: white;
    padding: 1rem 1.5rem;
    font-family: 'Meposa', 'Inter', sans-serif;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.hero-banner h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-banner h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-icons a {
    color: #a0522d;
    font-size: 2rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: #a0522d;
}

.social-icons .apple-music-icon {
    width: 28px;
    height: 28px;
    background-image: url('images/apple-music-icon-hover.svg');
}

.social-icons .tidal-icon {
    width: 28px;
    height: 28px;
}

/* Footer */
html body footer.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 1rem;
    text-align: center;
    font-size: 0.6rem !important;
    color: #555 !important;
}

html body footer.footer p {
    font-size: 0.6rem !important;
    color: #555 !important;
}

html body footer.footer a {
    font-size: 0.6rem !important;
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

html body footer.footer a:hover {
    color: #a0522d;
}

/* Override any external CSS for footer */
footer.footer,
footer.footer *,
html body footer.footer,
html body footer.footer * {
    color: #555 !important;
}

/* Media Page Styles */
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 2rem 2rem;
}

.media-item {
    position: relative;
    border-radius: 10px;
    overflow: visible;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid white;
}

.media-item-overlay {
    position: relative;
    display: block;
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: 1rem;
    padding: 1rem;
    z-index: 10;
}

.media-item-overlay:hover {
    color: #a0522d;
}

/* Contact Form Styles */
.contact-container {
    max-width: 800px;
    width: 70%;
    margin: 8rem auto 2rem;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border-radius: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: white;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    padding: 1rem 2rem;
    background: #a0522d;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Meposa', 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #8b4513;
}

/* Page Titles */
.page-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 2.5rem;
    font-family: 'Inter', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 6rem 1rem 1rem;
    }
    
    .page-title {
        font-size: 1.5rem;
        padding: 6rem 1rem 1rem;
    }
    
    .contact-container {
        margin: 6rem 1rem 1rem;
        padding: 2rem;
        width: 90%;
        max-width: 95%;
    }
}
