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

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 100px;
    height: 100vh;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    z-index: 1000;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.sidebar-link {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 15px 0;
    margin: 15px 0;
    position: relative;
    transition: color 0.3s ease;
    transform: rotate(-90deg);
    transform-origin: center center;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-link:hover {
    color: #FF6600;
}

.sidebar-link.active {
    color: #FF6600;
}

.sidebar-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    width: 100%;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-social a {
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #FF6600;
}

/* Footer */
.footer {
    background: #000;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-copy {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin: 0;
}

/* Main Content */
.main-content {
    margin-left: 100px;
    min-height: 100vh;
    background-color: #000;
    position: relative;
}

/* Mobile Header */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
}

.mobile-logo-image {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.mobile-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Desktop Logo */
.desktop-logo {
    position: absolute;
    top: 60px;
    left: 60px;
    z-index: 100;
}

.desktop-logo-image {
    height: 120px;
    width: auto;
    transition: all 0.3s ease;
}

.desktop-logo-image:hover {
    transform: scale(1.05);
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(346deg) brightness(119%) contrast(119%);
}


/* Nav Toggle (Hamburger) */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    padding: 0 60px;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: #fff;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    background: linear-gradient(45deg, #fff, #FF6600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.hero-location {
    font-size: 1.2rem;
    color: #FF6600;
    margin-bottom: 2rem;
    font-weight: 500;
}

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

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #FF6600, #FF7700);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

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

.btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

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

.hero-photo {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.hero-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 1rem !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        position: relative !important;
        margin-top: 2rem !important;
        text-align: center !important;
    }
}

@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: 5rem 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #FF6600, #FF7700);
    border-radius: 2px;
}

/* Music Section */
.music-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    scroll-margin-top: 150px;
    padding-top: 8rem !important;
    position: relative;
    z-index: 2;
}

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

.music-platform {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.music-platform h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.platform-embed {
    border-radius: 15px;
    overflow: hidden;
}

.platform-embed iframe {
    overflow: hidden !important;
    border: none !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.platform-embed iframe::-webkit-scrollbar {
    display: none !important;
}

.featured-tracks-placeholder {
    margin-top: 4rem;
    height: 200px;
    /* Space reserved for future content */
}

/* Videos Section */
.videos-section {
    background: #000;
    scroll-margin-top: 150px;
}

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

.video-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: translateY(-5px);
}

.video-placeholder i {
    font-size: 3rem;
    color: #FF6600;
    margin-bottom: 1rem;
}

.video-placeholder p {
    color: #fff;
    font-size: 1.1rem;
}


/* Shop Section */
.shop-section {
    background: #000;
    scroll-margin-top: 150px;
}

.shop-grid {
    display: flex;
    justify-content: center;
}

.shop-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
}

.shop-placeholder i {
    font-size: 4rem;
    color: #FF6600;
    margin-bottom: 1rem;
}

.shop-placeholder h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.shop-placeholder p {
    color: #ccc;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    scroll-margin-top: 150px;
}

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

.contact-info h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.contact-item i {
    color: #FF6600;
    font-size: 1.2rem;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    color: #FF6600;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #FF7700;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6600;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        left: -100px;
        width: 100px;
        height: 100vh;
        background-color: #1a1a1a;
        z-index: 1000;
        border-right: none;
        transition: transform 0.3s ease;
        transform: translateX(0) translateZ(0);
        -webkit-transform: translateX(0) translateZ(0);
    }

    .sidebar.active {
        transform: translateX(100px) translateZ(0);
        -webkit-transform: translateX(100px) translateZ(0);
    }

    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
        padding-top: 80px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .mobile-header {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 15px 20px;
        justify-content: space-between;
        align-items: center;
        z-index: 1001;
    }

    .desktop-logo {
        display: none !important;
    }

    .mobile-logo-image {
        height: 40px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 0 20px !important;
        padding-top: 0px !important;
        min-height: auto !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
        position: relative !important;
        top: 0 !important;
        margin-top: 0 !important;
        padding-bottom: 4rem !important;
    }

    .hero-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 1rem !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        padding-top: 2rem !important;
        padding-bottom: 3rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-image {
        order: -1 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .hero-text {
        order: 1 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-photo {
        margin: 0 auto !important;
        display: block !important;
    }

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

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

    .hero-location {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center !important;
        flex-wrap: wrap !important;
        display: flex !important;
        width: 100% !important;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .music-grid,
    .tracks-grid,
    .videos-grid,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .sidebar-nav {
        flex-grow: 0;
        padding-top: 100px;
        justify-content: flex-start;
        margin-top: 20px;
    }

    .sidebar-link {
        transform: none;
        margin: 10px 0;
        padding: 10px 20px;
        width: 100%;
        text-align: center;
    }

    .sidebar-footer {
        flex-direction: column;
        justify-content: flex-end;
        gap: 15px;
        padding-bottom: 15px;
        width: 100%;
        height: auto;
    }

    .footer-social {
        flex-direction: row;
        gap: 15px;
        margin-bottom: 0;
    }

    .footer-social {
        flex-direction: column !important;
        gap: 1rem !important;
        margin-bottom: 0 !important;
        align-items: center !important;
    }

    .footer-social a {
        margin: 0 !important;
    }

}

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

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

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .music-platform {
        padding: 1.5rem;
    }

    .track-card {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Reduce backdrop-filter on mobile for better performance */
    .mobile-header,
    .music-platform,
    .video-placeholder,
    .shop-placeholder,
    .contact-form {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    /* GPU acceleration for smooth scrolling */
    .sidebar,
    .mobile-header,
    .hero {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        will-change: transform;
    }
}