/* Base Styles */
:root {
    --primary: #1a1a1a;
    --secondary: #d4af37;
    --accent: #e63946;
    --light: #f8f9fa;
    --dark: #212529;
    --text: #333;
    --text-light: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
    padding-top: 80px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent;
}

.nav-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    transition: all 0.3s ease;
}

/* Scrolled state styles */
header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled .nav-video-bg {
    opacity: 0;
}

header.scrolled .nav-content {
    padding: 0.8rem 5%;
    background-color: rgba(0, 0, 0, 0.95);
}

/* Logo styles */
.logo h1 {
    color: var(--secondary);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
}

/* Navigation styles */
nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--secondary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Button styles */
.cta-button {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.about-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* About Content */
.about-content {
    padding: 5rem 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--secondary);
}

.lead-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-top: 4px solid var(--secondary);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Style Badges */
.style-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.style-badge {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.style-badge:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

/* Artist Section */
.artist-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.artist-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.artist-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.artist-image img {
    width: 100%;
    height: auto;
    display: block;
}

.artist-info {
    flex: 1;
}

.artist-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.artist-info p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.artist-specialties {
    margin-top: 2rem;
}

.specialty-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.specialty-icon {
    color: var(--secondary);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: var(--primary);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* Popup Styles */
#popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    position: relative;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-box-fb, .social-box-ig, .social-box-wsa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.social-box-fb {
    background: #3b5998;
}

.social-box-ig {
    background: #e1306c;
}

.social-box-wsa {
    background: #25D366;
}

.social-box-fb:hover, .social-box-ig:hover, .social-box-wsa:hover {
    transform: translateY(-3px);
}

/* Animation Classes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Section Transitions */
.about-hero {
    animation: fadeIn 1s ease-out;
}

.about-content {
    animation: fadeIn 1s ease-out 0.2s both;
}

.artist-section {
    animation: fadeIn 1s ease-out 0.4s both;
}

.cta-section {
    animation: fadeIn 1s ease-out 0.6s both;
}

/* Content Animations */
.section-title {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.lead-text,
.features-grid,
.artist-container,
.cta-section .container > * {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
}

/* Component Animations */
.feature-card {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

/* Stagger animations for feature cards */
.feature-card:nth-child(1) { animation-delay: 0.3s; }
.feature-card:nth-child(2) { animation-delay: 0.5s; }
.feature-card:nth-child(3) { animation-delay: 0.7s; }
.feature-card:nth-child(4) { animation-delay: 0.9s; }

/* Hero Text Animation */
.hero-content h1 {
    opacity: 0;
    animation: slideInLeft 1s ease-out forwards;
}

.hero-content p {
    opacity: 0;
    animation: slideInRight 1s ease-out 0.2s forwards;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
    z-index: 1001;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .artist-container {
        flex-direction: column;
    }
    
    .artist-image {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1001;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        transition: right 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        overflow-y: auto;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
        width: 100%;
        margin-top: 0;
    }
    
    nav a {
        font-size: 1.1rem;
        display: block;
        padding: 0.8rem 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    body.menu-open {
        overflow: hidden;
        height: 100%;
    }
    
    header.menu-open {
        background: rgba(0, 0, 0, 0.95) !important;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-hero {
        height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    nav {
        width: 85%;
    }
    
    nav ul {
        gap: 1rem;
        padding: 1.5rem;
    }
    
    nav a {
        font-size: 1rem;
        padding: 0.6rem 0.8rem;
    }
}