:root {
    --primary-color: #445668;
    --primary-light: #5D7793;
    --primary-dark: #2D3A47;
    --accent-color: #516B87;
    --text-color: #121212;
    --text-light: #3A4654;
    --bg-color: #F5F7F9;
    --bg-alt: #E5E9EE;
    --white: #ffffff;
    --black: #101010;
    --gray: #677381;
    --gray-light: #D1D6DC;
    --dark-slate: #293340;
    --shadow: rgba(17, 18, 18, 0.1);
    --font-main: 'Roboto', sans-serif;
    --font-accent: 'Poppins', sans-serif;
    --font-logo: 'Limelight', cursive;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

.dark-theme {
    --primary-color: #6D8BAA;
    --primary-light: #8EABC8;
    --primary-dark: #4A6D8E;
    --accent-color: #7F9FBF;
    --text-color: #E9ECF0;
    --text-light: #B4BCC7;
    --bg-color: #121212;
    --bg-alt: #1E2530;
    --gray-light: #3E4A59;
    --gray: #5D6A7C;
    --dark-slate: #1A2330;
    --shadow: rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    transition: var(--transition);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-accent);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

button, .cta-button {
    cursor: pointer;
    border: none;
    font-family: var(--font-accent);
    font-weight: 500;
    transition: var(--transition);
}

input, textarea {
    font-family: var(--font-main);
}

/* Theme Switch in Navigation */
.nav-theme-switch {
    position: relative;
    width: 36px;
    height: 36px;
    background: none;
    color: var(--text-color);
    box-shadow: none;
    padding: 0;
    border-radius: 50%;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0;
    border: none;
    line-height: 1;
}

.theme-switch-text {
    display: none;
    margin-left: 10px;
    color: var(--text-color);
}

.dark-theme .theme-switch-text {
    color: var(--text-light);
}

.nav-list li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-theme-switch:hover {
    background-color: rgba(32, 32, 32, 0.05);
    color: var(--primary-color);
}

/* Dark theme specific styles */
.dark-theme .nav-theme-switch {
    color: var(--text-light);
}

.dark-theme .nav-theme-switch:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* Mobile styles for theme switch */
@media (max-width: 768px) {
    .nav-theme-switch {
        width: 100%;
        height: auto;
        padding: 12px 5%;
        justify-content: center;
        border-radius: 0;
        background: none;
        color: var(--text-color);
        font-size: 16px;
        text-align: center;
    }
    
    .theme-switch-text {
        display: inline;
        margin-left: 10px;
    }
    
    .nav-list li {
        width: 100%;
        justify-content: center;
    }
    
    .nav-theme-switch:hover {
        background-color: rgba(32, 32, 32, 0.05);
    }
    
    .nav-theme-switch:hover .theme-switch-text {
        color: var(--primary-color);
    }
    
    .dark-theme .nav-theme-switch:hover {
        background-color: rgba(224, 224, 224, 0.15);
        color: var(--white);
    }
    
    .dark-theme .nav-theme-switch:hover .theme-switch-text {
        color: var(--white);
    }
    
    /* Add slide-in animation for theme switch */
    .main-nav.active .nav-theme-switch {
        animation: fadeInRight 0.5s ease forwards;
        opacity: 0;
    }
    
    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
        margin-top: 30px;
    }
    
    .hero-content {
        padding-top: 30px;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-title {
        margin-top: 20px;
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group:nth-child(3),
    .form-group:nth-child(4) {
        grid-column: span 1;
    }
    
    .submit-button {
        grid-column: span 1;
        width: 100%;
    }
    
    .logo-text-full {
        font-size: 24px;
    }
    
    .audio-visualizer {
        width: 240px;
        height: 240px;
    }
    
    .bar {
        width: 5px;
        margin: 0 2px;
    }
    
    .about-image {
        height: 250px;
    }
    
    .about-bar {
        height: 4px;
        margin: 2px 0;
    }
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.logo-animation {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.as-logo {
    width: 300px;
    height: 80px;
    position: relative;
    z-index: 2;
}

.as-text {
    font-family: var(--font-logo);
    font-size: 48px;
    font-weight: 400;
    fill: var(--primary-color);
    letter-spacing: 1px;
    animation: colorPulse 2s infinite alternate;
}

/* Animated sound waves for loading screen */
.loading-wave-container {
    position: absolute;
    width: 120px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 100px;
}

.loading-wave {
    width: 8px;
    background-color: var(--primary-color);
    border-radius: 4px;
    animation: loadingWave 1.2s ease-in-out infinite;
}

.loading-wave:nth-child(1) { animation-delay: -1.2s; height: 10px; }
.loading-wave:nth-child(2) { animation-delay: -1.1s; height: 20px; }
.loading-wave:nth-child(3) { animation-delay: -1.0s; height: 30px; }
.loading-wave:nth-child(4) { animation-delay: -0.9s; height: 40px; }
.loading-wave:nth-child(5) { animation-delay: -0.8s; height: 30px; }
.loading-wave:nth-child(6) { animation-delay: -0.7s; height: 20px; }
.loading-wave:nth-child(7) { animation-delay: -0.6s; height: 10px; }

@keyframes loadingWave {
    0%, 100% {
        transform: scaleY(0.5);
    }
    50% {
        transform: scaleY(1.2);
    }
}

@keyframes colorPulse {
    0% {
        fill: var(--primary-color);
    }
    100% {
        fill: var(--primary-light);
    }
}

.dark-theme .as-text {
    animation: darkColorPulse 2s infinite alternate;
}

@keyframes darkColorPulse {
    0% {
        fill: var(--primary-light);
    }
    100% {
        fill: var(--white);
    }
}

/* End Loading Overlay */

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    background-color: rgba(245, 247, 249, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px var(--shadow);
    transition: var(--transition);
}

.dark-theme .site-header {
    background-color: rgba(18, 18, 18, 0.95);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
}

.header-logo {
    width: 80px;
    height: 40px;
}

.logo-text {
    font-family: var(--font-logo);
    font-size: 30px;
    font-weight: 600;
    fill: var(--primary-color);
}

.logo-text-full {
    font-family: var(--font-logo);
    font-weight: 400;
    font-size: 32px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
    background-color: rgba(32, 32, 32, 0.05);
}

.dark-theme .nav-link:hover, .dark-theme .nav-link.active {
    background-color: rgba(224, 224, 224, 0.15);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    color: var(--text-color);
    font-size: 24px;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: var(--transition);
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background-color: rgba(65, 80, 95, 0.1);
}

/* Hero Section */
.hero-section {
    display: flex;
    min-height: 100vh;
    padding: 160px 7% 100px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    gap: 80px;
    position: relative;
}

.hero-content {
    flex: 1.4;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-logo);
    font-weight: 400;
    font-size: 5rem;
    background: linear-gradient(110deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
    line-height: 1.1;
    letter-spacing: 2px;
    position: relative;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin: 30px 0 45px;
    max-width: 85%;
    position: relative;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.hero-cta {
    display: flex;
    gap: 25px;
    margin-top: 50px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    box-shadow: 0 8px 20px rgba(68, 86, 104, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(68, 86, 104, 0.4);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transition: all 0.4s ease;
    z-index: -1;
}

.cta-button.secondary:hover {
    color: var(--white);
    border-color: transparent;
}

.cta-button.secondary:hover::before {
    width: 100%;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(93, 119, 147, 0.1) 0%, rgba(93, 119, 147, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Animation for audio visualizer bars */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.audio-visualizer {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

/* Dark theme for hero elements */
.dark-theme .hero-title {
    background: linear-gradient(110deg, var(--primary-light), var(--white));
    -webkit-background-clip: text;
    background-clip: text;
}

.dark-theme .hero-subtitle::after {
    background: linear-gradient(90deg, var(--primary-light), rgba(255, 255, 255, 0.7));
}

.dark-theme .cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.dark-theme .cta-button.secondary {
    color: var(--primary-light);
    border-color: var(--primary-light);
}

.dark-theme .cta-button.secondary::before {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.dark-theme .hero-visual::before {
    background: none;
}

@media (max-width: 1100px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 130px 7% 80px;
        gap: 60px;
    }
    
    .hero-title {
        font-size: 4.2rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-subtitle::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-visual::before {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 250px;
    }
    
    .audio-visualizer {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .audio-visualizer {
        width: 260px;
        height: 260px;
    }
}

/* Audio Visualizer Styles */
.visualizer-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transform: rotate(180deg);
    padding: 10px;
}

.bar {
    background-color: var(--primary-color);
    width: 7px;
    border-radius: 3px;
    margin: 0 3px;
    animation: sound-wave 1.2s infinite ease-in-out alternate;
}

.bar:nth-child(1) { height: 30%; animation-delay: -0.2s; }
.bar:nth-child(2) { height: 40%; animation-delay: -0.3s; }
.bar:nth-child(3) { height: 60%; animation-delay: -0.4s; }
.bar:nth-child(4) { height: 80%; animation-delay: -0.5s; }
.bar:nth-child(5) { height: 60%; animation-delay: -0.6s; }
.bar:nth-child(6) { height: 40%; animation-delay: -0.7s; }
.bar:nth-child(7) { height: 30%; animation-delay: -0.8s; }
.bar:nth-child(8) { height: 50%; animation-delay: -0.9s; }
.bar:nth-child(9) { height: 70%; animation-delay: -1.0s; }
.bar:nth-child(10) { height: 90%; animation-delay: -1.1s; }
.bar:nth-child(11) { height: 70%; animation-delay: -1.2s; }
.bar:nth-child(12) { height: 50%; animation-delay: -1.3s; }
.bar:nth-child(13) { height: 40%; animation-delay: -1.4s; }
.bar:nth-child(14) { height: 60%; animation-delay: -1.5s; }
.bar:nth-child(15) { height: 80%; animation-delay: -1.6s; }
.bar:nth-child(16) { height: 60%; animation-delay: -1.7s; }
.bar:nth-child(17) { height: 40%; animation-delay: -1.8s; }
.bar:nth-child(18) { height: 30%; animation-delay: -1.9s; }
.bar:nth-child(19) { height: 50%; animation-delay: -2.0s; }
.bar:nth-child(20) { height: 70%; animation-delay: -2.1s; }

@keyframes sound-wave {
    0% {
        height: 20%;
        background-color: var(--primary-light);
    }
    100% {
        height: 100%;
        background-color: var(--primary-dark);
    }
}

/* Section Styles */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 5%;
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.dark-theme .section-title {
    color: var(--white);
}

.dark-theme .about-section .section-title,
.dark-theme .releases-section .section-title,
.dark-theme .newsletter-section .section-title,
.dark-theme .features-section .section-title,
.dark-theme .contact-section .section-title {
    color: var(--white);
}

.dark-theme .about-section .section-title::after,
.dark-theme .releases-section .section-title::after,
.dark-theme .newsletter-section .section-title::after,
.dark-theme .features-section .section-title::after,
.dark-theme .contact-section .section-title::after {
    background-color: var(--white);
}

/* About Section Redesign */
.about-section {
    background-color: var(--bg-alt);
    padding: 70px 0;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text-container {
    flex: 1.2;
    order: 2;
}

.about-image {
    flex: 1;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
    position: relative;
    border-radius: 10px;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.about-highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease;
}

.about-highlight:hover {
    transform: translateX(5px);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.highlight-text {
    font-size: 1rem;
    line-height: 1.5;
    padding-top: 8px;
}

/* Dark theme adjustments */
.dark-theme .highlight-icon {
    background-color: var(--primary-light);
}

/* Responsive styles for about section */
@media (max-width: 1100px) {

    .visualizer-container {
        justify-content: center;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-text-container {
        order: 2;
    }
    
    .about-image {
        order: 1;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-highlights {
        gap: 15px;
    }
    
    .about-highlight {
        align-items: center;
    }
    
    .highlight-text {
        font-size: 0.95rem;
        padding-top: 0;
    }
}

@media (max-width: 576px) {
    .about-text p {
        font-size: 1rem;
    }
    
    .highlight-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
        font-size: 16px;
    }
    
    .highlight-text {
        font-size: 0.9rem;
    }
}

.stats-container {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Releases Section */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.release-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--white);
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.dark-theme .release-card {
    background-color: #242C38;
}

.release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px var(--shadow);
}

.release-card.featured {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
}

.release-artwork {
    position: relative;
    overflow: hidden;
}

.release-artwork img {
    transition: var(--transition);
    width: 100%;
}

.release-artwork:hover img {
    transform: scale(1.05);
}

.release-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: var(--white);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    transition: var(--transition);
}

.release-artwork:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.play-button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.release-info {
    padding: 20px;
}

.release-title {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.release-type {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.release-platforms {
    display: flex;
    gap: 15px;
}

.platform-link {
    font-size: 18px;
    color: var(--text-light);
}

.platform-link:hover {
    color: var(--primary-color);
}

.see-more-container {
    text-align: center;
    margin-top: 40px;
}

.see-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.see-more-link:hover {
    background-color: rgba(32, 32, 32, 0.05);
}

.dark-theme .see-more-link:hover {
    background-color: rgba(224, 224, 224, 0.1);
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--dark-slate);
    color: var(--white);
}

/* Make the section title white in both light and dark themes since the background is dark */
.newsletter-section .section-title {
    color: var(--white);
}

.newsletter-section .section-title::after {
    background-color: var(--white);
}

.newsletter-text {
    max-width: 600px;
    margin-bottom: 30px;
    color: var(--white);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    border: none;
    font-size: 1rem;
}

.subscribe-button {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 500;
}

.subscribe-button:hover {
    background-color: var(--primary-dark);
}

/* Contact Section - New Card Design */
.contact-section {
    background-color: var(--bg-alt);
    padding: 60px 0;
}

.contact-section .section-container {
    padding-top: 40px;
    padding-bottom: 40px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 40px;
}

.contact-icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(68, 86, 104, 0.2);
    transition: transform 0.3s ease;
}

.contact-icon-container:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 32px;
}

.contact-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: var(--white);
    border-radius: 30px;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow);
}

.contact-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow);
    color: var(--primary-dark);
}

.contact-email i {
    font-size: 1.2rem;
}

/* Dark theme adjustments */
.dark-theme .contact-section {
    background-color: #1A2330;
}

.dark-theme .contact-title {
    color: var(--white);
}

.dark-theme .contact-desc {
    color: var(--text-light);
}

.dark-theme .contact-email {
    background-color: #242C38;
    color: var(--primary-light);
}

.dark-theme .contact-email:hover {
    color: var(--white);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-icon-container {
        width: 70px;
        height: 70px;
    }
    
    .contact-icon {
        font-size: 28px;
    }
    
    .contact-title {
        font-size: 1.6rem;
    }
    
    .contact-desc {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .contact-email {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Footer Redesign */
.site-footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 30px 0 15px;
    position: relative;    
    border-top: 4px solid var(--primary-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 25px;
    position: relative;
}

.footer-brand, .footer-navigation {
    flex: 0 0 auto;
    justify-content: center;
    width: 100%;
}

.footer-logo {
    font-family: var(--font-logo);
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 1px;
}

.footer-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.footer-navigation a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.footer-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

.footer-navigation a:hover {
    color: var(--white);
}

.footer-navigation a:hover::after {
    width: 80%;
}

.footer-social {
    display: flex;
    gap: 15px;
    flex: 1;
    justify-content: flex-end;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Dark theme adjustments for footer */
.dark-theme .site-footer {
    background-color: #1A2330;
    border-top-color: var(--primary-light);
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 80;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .release-card.featured {
        grid-column: span 1;
    }
    
    .releases-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-color);
        box-shadow: 0 5px 10px var(--shadow);
        padding: 15px 0;
        z-index: 100;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link {
        display: block;
        padding: 12px 5%;
        border-radius: 0;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 3.3rem;
    }
    
    .stats-container {
        justify-content: space-between;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .logo-text-full {
        font-size: 28px;
    }
    
    .audio-visualizer {
        width: 280px;
        height: 280px;
    }
    
    .logo-text-full {
        font-size: 28px;
    }
    
    .audio-visualizer {
        width: 280px;
        height: 280px;
    }
    
    .bar {
        width: 5px;
        margin: 0 2px;
    }
    
    .about-image {
        height: 300px;
    }
    
    .nav-theme-switch {
        padding: 12px 5%;
        width: 100%;
        justify-content: flex-start;
        border-radius: 0;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group:nth-child(3),
    .form-group:nth-child(4) {
        grid-column: span 1;
    }
    
    .submit-button {
        grid-column: span 1;
        width: 100%;
    }
    
    .logo-text-full {
        font-size: 24px;
    }
    
    .audio-visualizer {
        width: 240px;
        height: 240px;
    }
    
    .bar {
        width: 5px;
        margin: 0 2px;
    }
    
    .about-image {
        height: 250px;
    }
    
    .about-bar {
        height: 4px;
        margin: 2px 0;
    }
}

/* Audio Visualizer - Dark theme adjustments */
.dark-theme .bar {
    background-color: var(--primary-color);
}

@keyframes sound-wave {
    0% {
        height: 20%;
        background-color: var(--primary-light);
    }
    100% {
        height: 100%;
        background-color: var(--primary-dark);
    }
}

.dark-theme .about-bar {
    background-color: var(--primary-light);
}

/* Dark theme for hero elements */
.dark-theme .hero-title {
    color: var(--white);
}

.dark-theme .cta-button.secondary {
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.dark-theme .cta-button.secondary:hover {
    background-color: var(--primary-light);
    color: var(--bg-color);
}

/* Dark theme for release cards */
.dark-theme .play-button {
    background-color: var(--bg-color);
    color: var(--primary-light);
}

.dark-theme .play-button:hover {
    background-color: var(--primary-light);
    color: var(--bg-color);
}

.dark-theme .release-badge {
    background-color: var(--primary-light);
    color: var(--bg-color);
}

.dark-theme .platform-link {
    color: var(--text-light);
}

.dark-theme .platform-link:hover {
    color: var(--primary-light);
}

.dark-theme .see-more-link {
    color: var(--primary-light);
}

.dark-theme .see-more-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Dark theme for buttons */
.dark-theme .subscribe-button,
.dark-theme .submit-button {
    background-color: var(--primary-light);
    color: var(--bg-color);
}

.dark-theme .subscribe-button:hover,
.dark-theme .submit-button:hover {
    background-color: var(--primary-color);
}

/* Dark theme for social links */
.dark-theme .social-link {
    background-color: #2A3645;
    color: var(--primary-light);
}

.dark-theme .social-link:hover {
    background-color: var(--primary-light);
    color: var(--bg-color);
}

/* Logo colors in dark theme */
.dark-theme .logo-text-full {
    color: var(--white);
}

.dark-theme .as-text {
    fill: var(--white);
}

/* Mobile menu toggle in dark mode */
.dark-theme .mobile-menu-toggle {
    color: var(--white);
}

.dark-theme .mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* About section dark theme adjustments */
.dark-theme .about-section {
    background-color: #1A2330;
}

.dark-theme .about-text p {
    color: var(--text-color);
}

/* Contact section dark theme adjustments */
.dark-theme .contact-item i {
    color: var(--primary-light);
}

.dark-theme .contact-item a {
    color: var(--text-color);
}

.dark-theme .contact-item a:hover {
    color: var(--primary-light);
}

.dark-theme .form-group label {
    color: var(--text-light);
}

/* Fix the form styles */
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(32, 32, 32, 0.1);
}

.dark-theme .form-group input:focus,
.dark-theme .form-group textarea:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 2px rgba(109, 139, 170, 0.3);
}

.nav-list {
    display: flex;
    gap: 10px;
}

/* Music Section */
.music-section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.music-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.music-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.music-artwork {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
}

.music-artwork img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.music-card:hover .music-artwork img {
    transform: scale(1.05);
}

.music-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.music-card:hover .music-play-button {
    opacity: 1;
}

.music-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.music-info {
    padding: 20px;
}

.music-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.music-type {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.music-platforms {
    display: flex;
    gap: 15px;
}

.platform-link {
    color: var(--text-light);
    font-size: 20px;
    transition: var(--transition);
}

.platform-link:hover {
    color: var(--primary-color);
}

/* Features Section */
.features-section {
    background-color: var(--bg-color);
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.testimonials-slider {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.testimonial-content {
    position: relative;
    padding: 10px 10px 10px 30px;
    margin-bottom: 20px;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 3rem;
    line-height: 1;
    color: var(--primary-color);
    font-family: serif;
    opacity: 0.5;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    font-style: italic;
}

.testimonial-author {
    text-align: right;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Dark Theme Styles for New Sections */
.dark-theme .music-card,
.dark-theme .feature-card,
.dark-theme .testimonial {
    background-color: #242C38;
}

.dark-theme .music-info h3,
.dark-theme .feature-title {
    color: var(--white);
}

.dark-theme .platform-link:hover {
    color: var(--primary-light);
}

.dark-theme .feature-icon {
    background-color: var(--primary-light);
}

.dark-theme .testimonial-content p {
    color: var(--white);
}

.dark-theme .testimonial-content::before {
    color: var(--primary-light);
}

.dark-theme .music-play-button {
    background-color: rgba(20, 20, 20, 0.9);
    color: var(--primary-light);
}

/* Media Queries for New Sections */
@media (max-width: 768px) {
    .music-grid,
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonials-slider {
        padding: 0 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Fix for fa-waveform icon */
.fa-waveform:before {
    content: "\f8f1"; /* Using audio description icon as fallback */
}

/* Artists Section */
.artists-section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.artist-profile {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.artist-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow);
}

.artist-image {
    flex: 1;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artist-profile:hover .artist-image img {
    transform: scale(1.05);
}

.artist-info {
    flex: 1.5;
    padding: 40px;
}

.artist-name {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.artist-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1.5px;
}

.artist-bio {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 25px;
}

.artist-social {
    display: flex;
    gap: 15px;
}

.artist-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--gray-light);
    color: var(--primary-color);
    font-size: 20px;
    transition: all 0.3s ease;
}

.artist-social-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

/* Dark theme styles for the artist section */
.dark-theme .artists-section .section-title {
    color: var(--white);
}

.dark-theme .artists-section .section-title::after {
    background-color: var(--white);
}

.dark-theme .artist-profile {
    background-color: #242C38;
}

.dark-theme .artist-name {
    color: var(--primary-light);
}

.dark-theme .artist-name::after {
    background-color: var(--primary-light);
}

.dark-theme .artist-bio {
    color: var(--text-color);
}

.dark-theme .artist-social-link {
    background-color: #2A3645;
    color: var(--primary-light);
}

.dark-theme .artist-social-link:hover {
    background-color: var(--primary-light);
    color: var(--bg-color);
}

/* Media Queries for Artists Section */
@media (max-width: 900px) {
    .artist-profile {
        flex-direction: column;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        gap: 0;
    }
    
    .artist-image {
        max-width: 100%;
        width: 100%;
    }
    
    .artist-info {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .artist-name {
        font-size: 1.8rem;
    }
    
    .artist-bio {
        font-size: 1rem;
    }
    
    .artist-info {
        padding: 25px 20px;
    }
}

.features-disclaimer {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 30px;
    font-style: italic;
}

.dark-theme .features-disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.about-visualizer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.about-visualizer-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.about-bar {
    background-color: var(--primary-color);
    height: 6px;
    border-radius: 3px;
    margin: 3px 0;
    width: 85%;
    animation: about-sound-wave 2s infinite ease-in-out alternate;
}

.about-bar:nth-child(1) { width: 40%; animation-delay: -0.2s; }
.about-bar:nth-child(2) { width: 50%; animation-delay: -0.3s; }
.about-bar:nth-child(3) { width: 60%; animation-delay: -0.4s; }
.about-bar:nth-child(4) { width: 75%; animation-delay: -0.5s; }
.about-bar:nth-child(5) { width: 60%; animation-delay: -0.6s; }
.about-bar:nth-child(6) { width: 70%; animation-delay: -0.7s; }
.about-bar:nth-child(7) { width: 85%; animation-delay: -0.8s; }
.about-bar:nth-child(8) { width: 95%; animation-delay: -0.9s; }
.about-bar:nth-child(9) { width: 80%; animation-delay: -1.0s; }
.about-bar:nth-child(10) { width: 60%; animation-delay: -1.1s; }
.about-bar:nth-child(11) { width: 70%; animation-delay: -1.2s; }
.about-bar:nth-child(12) { width: 90%; animation-delay: -1.3s; }
.about-bar:nth-child(13) { width: 75%; animation-delay: -1.4s; }
.about-bar:nth-child(14) { width: 60%; animation-delay: -1.5s; }
.about-bar:nth-child(15) { width: 45%; animation-delay: -1.6s; }
.about-bar:nth-child(16) { width: 30%; animation-delay: -1.7s; }

@keyframes about-sound-wave {
    0% {
        width: 30%;
        background-color: var(--primary-dark);
    }
    100% {
        width: 95%;
        background-color: var(--primary-light);
    }
}


