/* Variables & Reset */
:root {
    --bg-color: #050505;
    --bg-secondary: #0f0f0f;
    --text-primary: #e0e0e0;
    --text-muted: #888888;
    --accent-gold: #D4AF37;
    --accent-hover: #b59226;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img,
video {
    width: 100%;
    display: block;
    object-fit: cover;
}

.grid-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #111;
    /* Fallback color while loading */
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.container-fluid {
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}


.section {
    padding: 100px 0;
}

/* Add extra padding to the first section since Hero is gone */
.section:first-of-type {
    padding-top: 180px;
}

.section-title {

    font-size: 3rem;
    margin-bottom: 50px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background-color: var(--accent-gold);
    margin: 20px auto 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 50px;
}

.nav-links a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.title {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--accent-gold);
    color: #000;
}

.btn-primary:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    color: var(--text-muted);
    border-bottom: 1px solid var(--accent-gold);
    padding: 10px 0;
}

.btn-secondary:hover {
    color: var(--accent-gold);
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
}

.cta-btn:hover {
    background: var(--accent-gold);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .lead {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin-bottom: 30px;
    color: var(--text-primary);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.artist-frame {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

.artist-img {
    /* filter: grayscale(100%) contrast(1.2); Removed per user request */
    transition: var(--transition);
}

.artist-frame:hover .artist-img {
    /* filter: grayscale(0%) contrast(1); */
    transform: scale(1.02);
    /* Subtle zoom instead */
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-secondary);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
    cursor: default;
}

.service-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-card p {
    color: var(--text-muted);
}

/* Portfolio Section */
.alt-bg {
    background-color: var(--bg-secondary);
}

.portfolio-grid {
    column-count: 3;
    column-gap: 20px;
}

.grid-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.grid-item img,
.grid-item video {
    transition: transform 0.6s ease;
}

.grid-item:hover img,
.grid-item:hover video {
    transform: scale(1.03);
    /* Refined scale as per Creative Director */
    filter: brightness(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    text-align: center;
}

.grid-item:hover .overlay {
    opacity: 1;
}

.play-icon {
    font-size: 2rem;
    margin-top: 15px;
    color: var(--accent-gold);
}

.overlay h3 {
    font-size: 2rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.overlay p {
    color: var(--accent-gold);
    transform: translateY(20px);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-top: 10px;
}

.grid-item:hover .overlay h3,
.grid-item:hover .overlay p {
    transform: translateY(0);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(to top, #0f0f0f, #050505);
    text-align: center;
}

.contact-box h2 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.contact-box p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.email-link {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold);
}

.social-links {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

footer {
    padding: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 100%;
    max-height: 90vh;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 2001;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 3.5rem;
    }

    .about-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        column-count: 1;
    }

    .nav-links {
        display: none;
    }

    /* Mobile Menu to be added */
    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 2px;
        background: #fff;
        margin-bottom: 5px;
    }
}

/* Video Loader */
.video-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--accent-gold);
    animation: spin 1s ease-in-out infinite;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.grid-item.loading .video-loader {
    opacity: 1;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}