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

/* Color Variables */
:root {
    --color-dark: #0A0000;
    --color-dark-purple: #352B40;
    --color-medium-purple: #615A73;
    --color-gray-purple: #656573;
    --color-dark-gray: #5D6073;
    --color-medium-gray: #7C9AA6;
    --color-light-gray: #B0D1D9;
    --color-cream: #EFE7C1;
}

body {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    line-height: 1.6;
    color: #EFE7C1;
    background: #352B40;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(124, 154, 166, 0.3);
}

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

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #B0D1D9;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

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

.nav-link {
    text-decoration: none;
    color: #7C9AA6;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: lowercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #B0D1D9;
}

.nav-link.active {
    color: #B0D1D9;
    text-decoration: underline;
    text-decoration-color: #7C9AA6;
    text-underline-offset: 4px;
}

.nav-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-icon {
    color: #7C9AA6;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-icon:hover {
    color: #B0D1D9;
}

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

.bar {
    width: 25px;
    height: 2px;
    background-color: #7C9AA6;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #615A73 0%, #B0D1D9 100%);
    color: #EFE7C1;
    padding: 0 20px;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-right: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 2px;
    color: #EFE7C1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #B0D1D9;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

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

.artist-photo {
    position: relative;
    width: 450px;
    height: 450px;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #B0D1D9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: lowercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background: #7C9AA6;
    color: #EFE7C1;
    border: 2px solid #7C9AA6;
}

.btn-primary:hover {
    background: #B0D1D9;
    color: #352B40;
    border-color: #B0D1D9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #B0D1D9;
    border: 2px solid #7C9AA6;
}

.btn-secondary:hover {
    background: #7C9AA6;
    color: #EFE7C1;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #B0D1D9;
    border: 2px solid #7C9AA6;
}

.btn-outline:hover {
    background: #7C9AA6;
    color: #EFE7C1;
    border-color: #B0D1D9;
}

/* Section Styles */
section {
    padding: 80px 0;
    background: #352B40;
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #EFE7C1;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #B0D1D9;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #615A73 0%, #7C9AA6 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: #EFE7C1;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.about-text p {
    font-size: 1.1rem;
    color: #B0D1D9;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Photos Section */
.photos {
    padding: 80px 0;
    background: linear-gradient(135deg, #615A73 0%, #B0D1D9 100%);
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4 / 3;
}

.photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #B0D1D9;
    transition: transform 0.3s ease;
}

.photo-image:hover {
    transform: scale(1.05);
}

/* Music Section */
.music {
    background: linear-gradient(135deg, #352B40 0%, #656573 100%);
    padding: 100px 0;
}

.music-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cd-icon {
    font-size: 4rem;
    color: #B0D1D9;
}

.streaming-platforms {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 15px 25px;
    background: rgba(124, 154, 166, 0.2);
    border: 2px solid #7C9AA6;
    border-radius: 25px;
    text-decoration: none;
    color: #B0D1D9;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 1px;
}

.platform-btn:hover {
    background: rgba(176, 209, 217, 0.3);
    border-color: #B0D1D9;
    transform: translateX(10px);
    color: #EFE7C1;
}

.platform-btn i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.platform-btn.universal i { color: #ffffff; }
.platform-btn.linktree i { color: #43e55e; }
.platform-btn.spotify i { color: #1db954; }
.platform-btn.apple i { color: #fa243c; }
.platform-btn.youtube i { color: #ff0000; }
.platform-btn.amazon i { color: #ff9900; }

/* Shows Section */
.shows {
    background: linear-gradient(135deg, #615A73 0%, #B0D1D9 100%);
}

.shows-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.show-card {
    background: rgba(124, 154, 166, 0.2);
    padding: 2rem;
    border-radius: 15px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    border: 1px solid #7C9AA6;
    transition: all 0.3s ease;
}

.show-card:hover {
    background: rgba(176, 209, 217, 0.3);
    border-color: #B0D1D9;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(124, 154, 166, 0.3);
}

.show-date {
    text-align: center;
    background: linear-gradient(135deg, #B0D1D9 0%, #7C9AA6 100%);
    color: #352B40;
    padding: 1rem;
    border-radius: 10px;
    min-width: 80px;
    font-weight: 600;
}

.show-date .month {
    display: block;
    font-size: 0.9rem;
}

.show-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.show-details h3 {
    font-size: 1.5rem;
    color: #EFE7C1;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.show-details p {
    color: #B0D1D9;
    margin-bottom: 0.25rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #352B40 0%, #656573 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #B0D1D9;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #B0D1D9;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7C9AA6 0%, #B0D1D9 100%);
    color: #352B40;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    width: 60px;
    height: 60px;
    background: rgba(124, 154, 166, 0.2);
    color: #B0D1D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid #7C9AA6;
}

.social-link:hover {
    background: #B0D1D9;
    color: #352B40;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(124, 154, 166, 0.3);
}

/* Footer */
.footer {
    background: #352B40;
    color: #7C9AA6;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(124, 154, 166, 0.3);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #615A73 0%, #656573 100%);
    z-index: 9999;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-header {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    color: #EFE7C1;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-menu-links a {
    color: #EFE7C1;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 500;
    text-transform: lowercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.mobile-menu-links a:hover {
    color: #B0D1D9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-icons {
        display: none;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 50px;
    }

    .hero-content {
        margin-right: 0;
        margin-bottom: 2rem;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .show-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .artist-photo {
        width: 300px;
        height: 300px;
    }

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

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

    .streaming-platforms {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .platform-btn {
        padding: 12px 20px;
    }

    .show-card {
        padding: 1.5rem;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}