/* Sl1ck N°1 Main Website Styles - White Marble Theme */

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

:root {
    /* White marble color scheme */
    --marble-white: #f8f9fa;
    --marble-gray: #e9ecef;
    --marble-silver: #dee2e6;
    --marble-dark: #6c757d;
    --accent-gold: #d4af37;
    --accent-black: #212529;
    --text-dark: #343a40;
    --text-light: #6c757d;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.25);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--marble-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Marble Background Pattern */
.marble-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--marble-white) 0%, 
        var(--marble-gray) 25%, 
        var(--marble-silver) 50%, 
        var(--marble-gray) 75%, 
        var(--marble-white) 100%);
    background-size: 400% 400%;
    animation: marbleShift 20s ease-in-out infinite;
    z-index: -2;
}

.marble-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(108, 117, 125, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(233, 236, 239, 0.2) 0%, transparent 50%);
    animation: marbleFloat 30s ease-in-out infinite;
}

@keyframes marbleShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes marbleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--marble-silver);
    box-shadow: 0 2px 20px var(--shadow-light);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo .logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-black);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-1px);
}

/* Home Section */
.home-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px 50px;
    position: relative;
}

.home-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-black);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Shining Text Effects */
.shining-text {
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #f8f8f8 25%,
        #ffffff 50%,
        #f0f0f0 75%,
        #ffffff 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5),
                 0 0 60px rgba(255, 255, 255, 0.3),
                 0 0 90px rgba(255, 255, 255, 0.1);
    position: relative;
}

.shining-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 2.5s ease-in-out infinite;
    z-index: 1;
}

.shining-subtitle {
    background: linear-gradient(
        90deg,
        #e8e8e8 0%,
        #ffffff 25%,
        #f5f5f5 50%,
        #ffffff 75%,
        #e8e8e8 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s ease-in-out infinite 0.5s;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3),
                 0 0 40px rgba(255, 255, 255, 0.2);
    position: relative;
}

.shining-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 3s ease-in-out infinite 0.8s;
    z-index: 1;
}

@keyframes shine {
    0% {
        background-position: -200% 0;
    }
    50% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

/* Enhanced glow effect on hover */
.shining-text:hover {
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.8),
                 0 0 80px rgba(255, 255, 255, 0.5),
                 0 0 120px rgba(255, 255, 255, 0.3);
    animation-duration: 1.5s;
}

.shining-subtitle:hover {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.6),
                 0 0 60px rgba(255, 255, 255, 0.4);
    animation-duration: 2s;
}

/* Interactive Silhouette */
.silhouette-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.artist-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow-medium);
    transition: all 0.3s ease;
}

.interactive-regions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.region {
    position: absolute;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.region:hover {
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(5px);
    transform: scale(1.05);
}

.region-label {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 5px 15px var(--shadow-medium);
}

.region:hover .region-label {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Region positioning */
.head-region {
    top: 5%;
    left: 35%;
    width: 30%;
    height: 25%;
}

.left-region {
    top: 25%;
    left: 10%;
    width: 35%;
    height: 40%;
}

.right-region {
    top: 25%;
    right: 10%;
    width: 35%;
    height: 40%;
}

.center-region {
    top: 40%;
    left: 30%;
    width: 40%;
    height: 35%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    transform: rotate(45deg);
}

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

/* Content Sections */
.content-section {
    padding: 100px 20px;
    position: relative;
}

.content-section:nth-child(even) {
    background: rgba(233, 236, 239, 0.3);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-black);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--marble-gray), var(--marble-silver));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: var(--text-dark);
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: #b8941f;
}

/* Video wrapper for embedded videos */
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px 10px 0 0;
}

.video-info {
    padding: 20px;
    background: white;
}

.video-info h3 {
    font-size: 1.2rem;
    color: var(--accent-black);
    margin-bottom: 8px;
    font-weight: 600;
}

.video-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Clickable video titles */
.video-title.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.video-title.clickable:hover {
    color: var(--accent-gold);
    transform: translateY(-1px);
}

.video-title.clickable::after {
    content: '🔍';
    position: absolute;
    right: 0;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.video-title.clickable:hover::after {
    opacity: 1;
}

.expand-hint {
    font-size: 0.8rem;
    color: var(--accent-gold);
    opacity: 0.7;
    font-style: italic;
    margin-top: 5px;
}

/* Expanded video modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--accent-gold);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.video-modal-close:hover {
    background: #b8941f;
    transform: scale(1.1);
}

.video-modal-title {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Responsive design for modal */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .video-modal-close {
        top: -40px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .video-modal-title {
        bottom: -50px;
        font-size: 1.2rem;
    }
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--marble-gray), var(--marble-silver));
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Gallery overlay for artwork descriptions */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--accent-gold);
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.3;
}

/* Music Section */
.music-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.featured-track {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.track-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-black);
    margin-bottom: 10px;
    text-align: center;
}

@media (max-width: 768px) {
    .music-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .music-links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.soundcloud-embed {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.soundcloud-embed iframe {
    border-radius: 10px;
}

.music-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.music-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all 0.3s ease;
}

.music-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.music-link.soundcloud:hover {
    background: #ff5500;
    color: white;
}

.music-link span {
    font-size: 1.2rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px var(--shadow-medium);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3,
.social-links h3 {
    font-size: 1.5rem;
    color: var(--accent-black);
    margin-bottom: 20px;
}

.contact-methods,
.social-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link,
.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all 0.3s ease;
}

.contact-link:hover,
.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow-medium);
    background: var(--accent-gold);
    color: white;
}

/* Footer */
.main-footer {
    background: var(--accent-black);
    color: white;
    padding: 60px 20px 30px;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .home-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .music-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
