/* Variables */
:root {
    --color-primary: #766858;
    --color-primary-light: #b09e8f;
    --color-secondary: #303f9f;
    --color-dark: #111111;
    --color-gray: #333333;
    --color-light-gray: #555555;
    --color-white: #ffffff;
    --color-off-white: rgba(255, 255, 255, 0.9);
    --color-bg-dark: rgba(0, 0, 0, 0.8);
    --color-bg-medium: rgba(0, 0, 0, 0.6);
    --color-bg-light: rgba(255, 255, 255, 0.1);
    
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease-out;
    
    --shadow-subtle: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.2);
    --shadow-strong: 0 8px 30px rgba(0, 0, 0, 0.3);
    
    --border-radius-small: 5px;
    --border-radius-medium: 10px;
    --border-radius-large: 20px;
}

/* Base Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed header */
}

body {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-white);
    background: url('src/img/background-dark.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-medium);
}

a {
    color: var(--color-white);
    text-decoration: none;
    transition: all var(--transition-fast);
}

a:hover {
    color: var(--color-primary);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

h2 {
    font-size: 2.2rem;
    text-transform: uppercase;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-bg-dark);
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    transition: all var(--transition-medium);
}

header.scrolled {
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.95);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 100px;
    width: 100px;
    margin-right: 15px;
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: scale(1.05);
}

nav {
    display: flex;
    gap: 25px;
}

.nav-link {
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('src/img/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    padding-top: 70px; /* Account for header */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 5px;
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius-medium);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    font-size: 1rem;
}

.cta-button.primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-medium);
}

.cta-button.primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--color-white);
}

.cta-button.secondary:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
    transform: translateY(-3px);
}

/* Section Styling */
.section {
    padding: 100px 0;
    position: relative;
}

.dark-section {
    background-color: var(--color-bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    color: var(--color-white);
}

.title-underline {
    width: 80px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 0 auto;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 1;
}

.about-img img {
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-medium);
}

.about-img img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-strong);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-bg-light);
    color: var(--color-white);
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

/* Music Section */
.music-filters, .gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    background-color: var(--color-bg-light);
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--color-primary);
}

.tracks-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.track {
    background-color: var(--color-bg-medium);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    transition: all var(--transition-medium);
}

.track:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.track-cover {
    position: relative;
    overflow: hidden;
}

.track-cover img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-medium);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.play-overlay i {
    font-size: 3rem;
    color: var(--color-white);
}

.track-cover:hover .play-overlay {
    opacity: 1;
}

.track-cover:hover img {
    transform: scale(1.05);
}

.track-info {
    padding: 20px;
}

.track-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.track-date, .track-album {
    font-size: 0.9rem;
    color: var(--color-off-white);
    margin-bottom: 5px;
}

.track-player {
    margin: 15px 0;
}

.custom-audio {
    width: 100%;
    height: 30px;
}

.stream-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.stream-link {
    font-size: 1.2rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-top: 15px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-small);
}

.music-cta {
    text-align: center;
    margin-top: 50px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-medium);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transform: translateY(100%);
    transition: transform var(--transition-fast);
}

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

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    padding: 60px 20px;
    overflow: auto;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: var(--color-white);
    cursor: pointer;
    z-index: 2001;
}

.modal-content {
    display: block;
    max-width: 80%;
    max-height: 80vh;
    margin: 0 auto;
    border-radius: var(--border-radius-medium);
}

.modal-caption {
    text-align: center;
    margin-top: 20px;
    color: var(--color-white);
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--color-white);
    cursor: pointer;
    padding: 10px;
    z-index: 2001;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Newsletter Section */
.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    margin-bottom: 20px;
}

.newsletter-form {
    margin-top: 30px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius-small);
    font-family: inherit;
    font-size: 1rem;
}

.submit-btn {
    padding: 12px 25px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--border-radius-small);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.submit-btn:hover {
    background-color: var(--color-primary-light);
}

.form-message {
    margin-top: 15px;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    gap: 50px;
}

.contact-info, .contact-form-container {
    flex: 1;
}

.contact-card {
    background-color: var(--color-bg-medium);
    padding: 30px;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-medium);
}

.contact-card h3 {
    margin-bottom: 20px;
    color: var(--color-primary);
}

.contact-card p {
    margin-bottom: 15px;
}

.contact-card i {
    margin-right: 10px;
    color: var(--color-primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid var(--color-light-gray);
    border-radius: var(--border-radius-small);
    background-color: var(--color-bg-light);
    color: var(--color-white);
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.error {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Footer */
footer {
    background-color: var(--color-bg-dark);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 250px;
    width: 250px;
    margin-right: 10px;
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-nav, .footer-social, .footer-legal {
    display: flex;
    flex-direction: column;
}

.footer-links h4 {
    margin-bottom: 15px;
    color: var(--color-primary);
}

.footer-links a {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--color-light-gray);
    font-size: 0.9rem;
    color: var(--color-off-white);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-img {
        margin-bottom: 30px;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 10px 5%;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-bg-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left var(--transition-medium);
        padding: 20px;
    }
    
    nav.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        margin: 15px 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .tracks-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form input, .submit-btn {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.fade-in {
    animation: fadeIn var(--transition-medium) forwards;
}

.slide-up {
    animation: slideUp var(--transition-medium) forwards;
}








