/* --- Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    background: #000;
    color: #fff;
    min-height: 100vh;
}

/* Hero Video Section */
.video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Fluid Simulation Canvas - Fixed Background */
#myCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    background: #000000;
}

/* --- Navigation --- */
.sticky-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
    padding: 0; 
}

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

.nav-brand {
    display: flex;
    align-items: center;
    line-height: 0; 
}

.nav-logo {
    height: 30px; 
    width: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.nav-brand:hover .nav-logo {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-button {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

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

.nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 15px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 25px;
    color: #d0d0d0;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding-left: 30px;
}

/* --- Header Section --- */
.overlay-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.site-header {
    text-align: center;
    padding: 60px 20px;
    background: transparent;
}

.header-logo-container {
    display: inline-block;
    margin-bottom: 20px;
}

.main-logo {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5))
            drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
    transition: transform 0.5s ease-out;
}

.main-logo:hover {
    transform: scale(1.02);
}

.dj-name {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 8px;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.8)); }
}

.tagline {
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.8;
}

/* --- About Section (General/Home Page) --- */
.about-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.about-card-link {
    text-decoration: none; 
    color: inherit;         
    display: block;         
    transition: transform 0.3s ease;
}

.about-card-link:hover {
    transform: translateY(-5px) scale(1.01);
}

.about-box {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.about-card-link:hover .about-box {
    border-color: rgba(255, 255, 255, 0.685);
    box-shadow: 0 25px 70px rgba(255, 255, 255, 0.425), 0 0 60px rgba(255, 255, 255, 0.3);
}

/* --- Bio Page Specific Layout (Split Screen) --- */
.about-section.bio-page {
    max-width: 1200px;
    margin-top: 20px;
}

.bio-grid {
    display: flex;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.bio-text-column {
    flex: 1;
    min-width: 300px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bio-image-column {
    flex: 1;
    min-width: 300px;
    background: #111;
    display: flex;
    position: relative;
    overflow: hidden;
}

.bio-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Centered Profile Image (Eye Animation) --- */
.profile-image {
    width: 250px; 
    height: auto; 
    margin: 0 auto 30px;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

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

.image-placeholder {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 180px;
}

.profile-img-base,
.profile-img-pupil {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain; 
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.profile-img-base { z-index: 1; }
.profile-img-pupil { z-index: 2; }

.profile-img-top {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain; 
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
}

/* --- Bio Content Typography --- */
.bio-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 2px;
}

.bio-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 20px;
    text-align: left;
}

/* --- Footer --- */
.site-footer {
    margin-top: 60px;
    padding: 30px 20px;
    text-align: center;
    color: #808080;
    font-size: 0.9rem;
}

/* --- SHOP PAGE STYLES --- */

/* Shopping Cart Button */
.cart-button-container {
    position: fixed;
    top: 80px;
    right: 30px;
    z-index: 99;
}

.cart-button {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.cart-button:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

.cart-icon {
    font-size: 1.5rem;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff0000;
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    border: 2px solid #000;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 101;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
}

.close-cart {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.close-cart:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart {
    text-align: center;
    color: #808080;
    padding: 40px 20px;
    font-size: 1rem;
}

.cart-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.cart-item-info h4 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    color: #fff;
}

.cart-item-size {
    color: #999;
    font-size: 0.85rem;
    margin: 4px 0;
}

.cart-item-price {
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 8px 0;
}

.cart-item-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.quantity {
    color: #fff;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

.remove-btn {
    background: transparent;
    border: 1px solid rgba(255, 0, 0, 0.5);
    color: #ff4444;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.remove-btn:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.8);
}

.cart-footer {
    padding: 25px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
}

.checkout-button {
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.checkout-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Shop Section */
.shop-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Product Card */
.product-card {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
}

.product-description {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
}

.product-options label {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 600;
}

.size-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-select:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.size-select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .bio-grid {
        flex-direction: column;
    }
    
    .bio-image-column {
        order: -1;
        height: 400px;
    }

    .bio-text-column {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .nav-links { gap: 20px; }
    .dj-name { font-size: 2.5rem; letter-spacing: 4px; }
    .about-box { padding: 30px 25px; }
    .profile-image { width: 180px; }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .cart-button-container {
        top: 70px;
        right: 15px;
    }
    
    .cart-button {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .nav-container { flex-direction: column; gap: 15px; }
    .nav-links { gap: 15px; width: 100%; justify-content: center; }
    .dj-name { font-size: 2rem; }
    
    .bio-image-column {
        height: 300px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .add-to-cart-btn {
        width: 100%;
    }
}