/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Artistic and Modern */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-gradient: linear-gradient(135deg, #232526 0%, #414345 100%);
    
    --primary-color: #667eea;
    --secondary-color: #f5576c;
    --accent-color: #00f2fe;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-light: #ffffff;
    --background-dark: #000000;
    --background-light: #000000;
    --card-background: rgba(255, 255, 255, 0.1);
    --glass-background: rgba(255, 255, 255, 0.05);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 20px;
    --border-radius: 20px;
    
    /* Animations */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-light);
    background: var(--background-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    width: 100%;
    padding: 1rem 20px;
    display: flex;
    align-items: center;
}

.nav-logo h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.header-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-left: auto;
}

.header-social-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.header-social-link:hover {
    color: var(--accent-color);
    transform: translateY(-1px);
}

.header-social-link .x-logo {
    font-size: 1.1rem;
    font-weight: bold;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary-color);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-dark);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo-wrapper {
    width: 408px;
    height: 408px;
    border-radius: 50%;
    background: var(--primary-gradient);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.hero-photo {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.hero-photo-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
}

.hero-title {
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
}

.hero-name {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    display: block;
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-bounce);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-smooth);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border-color: var(--accent-color);
}

.modal-buttons .btn-secondary {
    background: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.3);
}

.modal-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.3);
}

/* Sound Waves Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sound-waves {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 200px;
}

.wave {
    width: 6px;
    background: var(--accent-gradient);
    border-radius: 3px;
    animation: wave 1.5s ease-in-out infinite;
}

.wave-1 { animation-delay: 0s; }
.wave-2 { animation-delay: 0.1s; }
.wave-3 { animation-delay: 0.2s; }
.wave-4 { animation-delay: 0.3s; }
.wave-5 { animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { height: 20px; }
    50% { height: 100px; }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    animation: bounce 2s infinite;
    background: #333333;
    padding: 1rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    user-select: none;
}

.scroll-arrow {
    font-size: 1.5rem;
    opacity: 0.7;
    pointer-events: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.contact-section .section-title {
    color: var(--text-light);
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    font-family: var(--font-primary);
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    margin: 0 auto;
    border-radius: 2px;
}

.contact-section .section-line {
    background: var(--primary-gradient);
}

/* Video Section */
.video-section {
    background: var(--background-dark);
    padding: var(--section-padding);
}

.video-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

/* Music Section */
.music {
    background: var(--dark-gradient);
    color: var(--text-light);
}

.music .section-title {
    color: var(--text-light);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.music-card {
    background: var(--card-background);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.music-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
}

.music-card:hover::before {
    opacity: 0.1;
}

.music-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.music-artwork {
    position: relative;
    margin-bottom: 1.5rem;
}

.artwork-placeholder {
    width: 100%;
    height: 200px;
    background: var(--secondary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-bounce);
    opacity: 0;
}

.music-artwork:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.track-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.track-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.music-links {
    display: flex;
    gap: 1rem;
}

.music-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.music-link:hover {
    color: var(--text-light);
    text-decoration: underline;
}

/* Mailing List Section */
.mailing-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 60px 0;
}

.mailing-content {
    text-align: center;
}

.mailing-btn {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    gap: 0.5rem;
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
}

.mailing-btn:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: #111111;
    margin: 5% auto;
    padding: 0;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideIn 0.3s ease-out;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.close-modal {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.close-modal:hover {
    opacity: 0.7;
    transform: translateY(-50%) scale(1.1);
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.modal-buttons .btn {
    flex: 1;
    justify-content: center;
}

.field-title {
    display: block;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.required {
    color: var(--secondary-color);
    font-weight: 600;
}

.optional-text {
    color: rgba(255, 255, 255, 0.6);
    font-weight: normal;
    font-style: italic;
}

/* Social Media Fields */
#socialHandleGroup {
    transition: all 0.3s ease-in-out;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
}

#socialHandleGroup.show {
    opacity: 1;
    max-height: 200px;
    margin-top: 1rem;
}

.optional {
    color: var(--text-secondary);
    font-weight: 400;
    font-style: italic;
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
}

.radio-option:hover {
    color: var(--text-light);
}

.radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.radio-text {
    user-select: none;
}

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

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* Contact Section */
.contact-section {
    background: var(--dark-gradient);
    color: var(--text-light);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('media/1000007916.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: blur(3px);
    opacity: 0.4;
    z-index: 0;
}


.contact-content {
    max-width: 576px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-info {
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-disclaimer {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-style: italic;
    margin-top: 0;
    margin-bottom: 0;
}

.contact-form {
    background: var(--card-background);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 0.96rem;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('media/light_me_up_a_cigarette.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: blur(4px);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

.contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.08;
    pointer-events: none;
    z-index: -1;
}

.form-group {
    margin-bottom: 0.51rem;
    position: relative;
    z-index: 1;
}

.form-label {
    display: block;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.51rem 0.64rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-light);
    font-size: 0.8rem;
    font-family: var(--font-primary);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

/* Dropdown option styling */
.form-input option {
    background: #ffffff;
    color: #000000;
    padding: 0.5rem;
}

select.form-input {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
}

select.form-input option {
    background: #ffffff;
    color: #000000;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 51px;
    line-height: 1.4;
}

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

.contact-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.8rem;
    padding: 0.64rem 0.96rem;
    margin-top: 0.32rem;
}

.contact-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.contact-btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

.stay-on-page-notice {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    text-align: center;
}

.stay-on-page-notice p {
    margin: 0;
    color: #ffc107;
    font-size: 0.9rem;
    font-weight: 500;
}

.stay-on-page-notice i {
    margin-right: 0.5rem;
    color: #ffc107;
}

.form-status {
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-status.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    display: block;
}

.form-status.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    display: block;
}

.form-status.loading {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    display: block;
}

/* Enhanced Form Elements */
.char-counter {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: right;
    margin-top: 0.25rem;
}

.char-counter.warning {
    color: #f59e0b;
}

.char-counter.danger {
    color: #ef4444;
}


.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.checkbox-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    user-select: none;
}


.hcaptcha-container {
    display: flex;
    justify-content: center;
    margin: 0.5rem 0;
}

.captcha-note {
    margin-top: 0.5rem;
    text-align: center;
}

.captcha-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.captcha-note small {
    font-size: 0.75rem;
}

/* hCaptcha dark theme adjustments */
.h-captcha {
    margin: 0 auto;
}

.captcha-label {
    text-align: center;
    display: block;
    width: 100%;
}


@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-checkbox {
    margin-top: 0.5rem;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.privacy-link {
    color: var(--accent-color);
    text-decoration: underline;
    transition: var(--transition-smooth);
}

.privacy-link:hover {
    color: var(--primary-color);
}

.privacy-notice {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.5;
}

.privacy-notice p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.privacy-notice strong {
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--background-dark);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-social-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-social-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
    text-decoration: none;
}

.footer-social-link .x-logo {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 32, 44, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: var(--transition-smooth);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .header-social {
        display: none;
    }

    .hero-photo-wrapper {
        width: 308px;
        height: 308px;
    }
    
    .hero-photo {
        width: 300px;
        height: 300px;
    }

    .video-wrapper {
        max-width: 100%;
        margin: 0 1rem;
    }

    .music-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .modal-content {
        margin: 5% auto;
        width: 95%;
    }

    .modal-header {
        padding: 1rem 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .mailing-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-form {
        padding: 0.77rem;
    }

    .contact-info p {
        font-size: 1.1rem;
    }


    .form-group {
        margin-bottom: 0.45rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 80px 0;
        --container-padding: 0 15px;
    }

    .hero-photo-wrapper {
        width: 258px;
        height: 258px;
    }
    
    .hero-photo {
        width: 250px;
        height: 250px;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .music-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .music-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 0.64rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.51rem 0.64rem;
        font-size: 0.75rem;
    }

    .contact-btn {
        padding: 0.64rem 0.96rem;
        font-size: 0.8rem;
    }

    .form-group {
        margin-bottom: 0.38rem;
    }

}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gradient);
}


/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

