/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4af37;
    --secondary-color: #8b7355;
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --dark-tertiary: #2a2a2a;
    --light-text: #f5f5f5;
    --gray-text: #b0b0b0;
    --accent-red: #8b2635;
    --accent-purple: #4a1942;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

body.loaded .preloader {
    opacity: 0;
    visibility: hidden;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-content {
    text-align: center;
}

.preloader-icon {
    font-size: 5rem;
    color: var(--primary-color);
    animation: spin-slow 2s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.preloader-content p {
    font-size: 1.2rem;
    color: var(--gray-text);
    letter-spacing: 2px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-full {
    width: 100%;
    padding: 0;
}

/* ============================================
   MUSICAL NOTES BACKGROUND ANIMATION
   ============================================ */
.music-notes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.note {
    position: absolute;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.1;
    animation: float-notes 20s infinite linear;
}

.note-1 {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.note-2 {
    left: 25%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.note-3 {
    left: 50%;
    animation-delay: 6s;
    animation-duration: 28s;
}

.note-4 {
    left: 70%;
    animation-delay: 2s;
    animation-duration: 24s;
}

.note-5 {
    left: 85%;
    animation-delay: 8s;
    animation-duration: 26s;
}

.note-6 {
    left: 40%;
    animation-delay: 5s;
    animation-duration: 23s;
}

@keyframes float-notes {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav-logo:hover {
    transform: translateY(-2px);
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 1rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
}

.social-link {
    color: var(--light-text);
    font-size: 1.3rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    color: var(--primary-color);
    transform: scale(1.15) translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    overflow: hidden;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-image {
    position: relative;
    z-index: 10;
}

.hero-image-frame {
    position: relative;
    overflow: hidden;
    background: #000000;
}

.hero-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-overlay {
    display: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(10, 10, 10, 0.2) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.1) 0%, rgba(10, 10, 10, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    animation: fade-in-up 1.2s ease-out;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 700;
    color: var(--light-text);
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.title-line {
    display: block;
    animation: slide-in 1s ease-out forwards;
    opacity: 0;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
    color: var(--primary-color);
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 2rem;
    animation: fade-in 1.5s ease-out 0.6s both;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 2rem 0;
    animation: expand-width 1s ease-out 0.8s both;
}

@keyframes expand-width {
    from { width: 0; }
    to { width: 100px; }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    animation: fade-in 1.5s ease-out 1s both;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #e6c158, var(--primary-color));
}

.btn-primary i {
    font-size: 1.3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: fade-in 2s ease-out 1.5s both;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    position: relative;
    margin: 0 auto 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0%, 100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(10px);
    }
}

.arrow {
    width: 100%;
    text-align: center;
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
    margin: -5px auto;
    animation: arrow-move 1.5s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: 0.15s;
}

.arrow span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes arrow-move {
    0%, 100% {
        opacity: 0;
        transform: rotate(45deg) translateY(-10px);
    }
    50% {
        opacity: 1;
        transform: rotate(45deg) translateY(0);
    }
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
section {
    position: relative;
    padding: 4rem 0 2rem 0;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto;
    position: relative;
}

.title-underline::before,
.title-underline::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.title-underline::before {
    left: -15px;
}

.title-underline::after {
    right: -15px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.image-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: var(--dark-secondary);
    padding: 20px;
    border: 3px solid var(--primary-color);
    transition: all 0.4s ease;
}

.image-frame:hover {
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(212, 175, 55, 0.5),
        inset 0 0 30px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: -1;
    border-radius: 10px;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(26, 26, 26, 0.3) 80%, rgba(26, 26, 26, 0.7) 95%, var(--dark-secondary) 100%);
    pointer-events: none;
}

.vinyl-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin-slow 15s linear infinite;
}

.vinyl-decoration i {
    font-size: 3rem;
    color: var(--dark-bg);
}

.about-text {
    animation: fade-in-right 1s ease-out;
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.lead {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SONGS SECTION
   ============================================ */
.songs {
    background: var(--dark-secondary);
    padding: 2rem 0;
    overflow: hidden;
}

.songs-wrapper {
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    touch-action: pan-y;
}

.songs-track {
    display: flex;
    gap: 3rem;
    width: fit-content;
}

.song-card {
    flex-shrink: 0;
    width: 380px;
    background: linear-gradient(135deg, var(--dark-tertiary), var(--dark-bg));
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.song-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 15px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.song-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.song-card:hover::before {
    opacity: 1;
}

.song-vinyl {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    animation: spin-slow 20s linear infinite;
    z-index: 10;
}

.song-vinyl i {
    font-size: 2rem;
    color: var(--dark-bg);
}

.song-thumbnail {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.song-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.play-overlay i {
    font-size: 4rem;
    color: var(--primary-color);
    transform: scale(0.5);
    transition: var(--transition-smooth);
}

.song-thumbnail:hover .play-overlay {
    opacity: 1;
}

.song-thumbnail:hover .play-overlay i {
    transform: scale(1);
}

.song-thumbnail:hover img {
    transform: scale(1.1);
}

.song-info {
    position: relative;
    z-index: 5;
}

.song-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--light-text);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.song-composer,
.song-lyrics {
    font-size: 0.95rem;
    color: var(--gray-text);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.song-composer i,
.song-lyrics i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: linear-gradient(180deg, var(--dark-secondary) 0%, var(--dark-bg) 100%);
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.8;
}

.contact-form {
    background: rgba(26, 26, 26, 0.6);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(10, 10, 10, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: var(--light-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(10, 10, 10, 0.8);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-text);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-group input:focus ~ .form-icon,
.form-group textarea:focus ~ .form-icon {
    color: var(--light-text);
}

.btn-submit {
    width: 100%;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50px;
    color: var(--dark-bg);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #e6c158, var(--primary-color));
}

.btn-submit i {
    font-size: 1.1rem;
}

.contact-social-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-social-footer p {
    font-size: 1rem;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

.social-links-simple {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-links-simple a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-links-simple a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-5px) rotate(360deg);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-bg);
    padding: 2rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content p {
    color: var(--gray-text);
    font-size: 0.95rem;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--gray-text);
    font-size: 1.5rem;
    transition: var(--transition-fast);
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .song-card {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .social-icons {
        border-left: none;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        padding-left: 0;
        padding-top: 1rem;
        margin-top: 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        height: 100vh;
        height: 100dvh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    
    .hero .container {
        max-width: 100%;
        padding: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
    }
    
    .hero-layout {
        position: relative;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        display: block;
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 100%;
    }
    
    .hero-image {
        position: absolute;
        top: 45%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70%;
        height: 60%;
        max-width: none;
        margin: 0;
        z-index: 1;
    }
    
    .hero-image-frame {
        width: 100%;
        height: 100%;
        background: #000000;
    }
    
    .hero-image-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-content {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 20;
        text-align: center;
        padding: 3rem 2rem calc(env(safe-area-inset-bottom) + 3rem) 2rem;
        background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
        min-height: 250px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    
    .hero-divider {
        margin: 1.5rem auto;
    }
    
    .btn-primary {
        margin: 0 auto 1rem auto;
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
        display: inline-flex;
        width: auto;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .about-image {
        max-width: 300px;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem 0.5rem;
    }
    
    .stat-item i {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-number {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .vinyl-decoration {
        width: 70px;
        height: 70px;
        bottom: -15px;
        right: -15px;
    }
    
    .vinyl-decoration i {
        font-size: 2rem;
    }
    
    .song-card {
        width: 320px;
    }
    
    .songs-wrapper {
        padding: 1.5rem 0;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .song-card {
        width: 280px;
        padding: 1.5rem;
    }
    
    .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.875rem 0.875rem 0.875rem 2.5rem;
    }
    
    .contact-intro h3 {
        font-size: 2rem;
    }
}