:root {
    --bg-color: #050505;
    --secondary-bg: #111111;
    --text-color: #f4f4f4;
    --text-muted: #a0a0a0;
    --gold: #D4AF37;
    --gold-light: #F2D06B;
    --purple-deep: #2e0933;
    --purple-accent: #6a1b9a;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-slow: 0.6s ease;
    --transition-standard: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-standard);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.relative-z {
    position: relative;
    z-index: 2;
}

/* Buttons */
.primary-btn,
.secondary-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-standard);
    margin: 10px;
    font-weight: 500;
}

.primary-btn {
    background-color: var(--gold);
    color: #000;
}

.primary-btn:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: transparent;
    color: var(--gold);
}

.secondary-btn:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
}

.nav-links a {
    margin-left: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
}

.nav-links .cta-btn {
    border: 1px solid var(--gold);
    padding: 8px 20px;
    color: var(--gold);
}

.nav-links .cta-btn:hover {
    background: var(--gold);
    color: #000;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--gold);
    transition: 0.3s;
}

/* Section Common */
.section-title {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a0520 0%, #000000 100%);
    z-index: -1;
}

/* Use a pseudo element for a better background image or visual later */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1634449571010-02389ed0f9b0?auto=format&fit=crop&q=80&w=2070') no-repeat center center/cover;
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    letter-spacing: -1px;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.expertise-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.floating-social {
    position: fixed;
    right: 30px;
    bottom: 30px;
    color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    z-index: 100;
    transition: 0.3s;
}

.floating-social:hover {
    background: var(--gold);
    color: #000;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image-wrapper {
    height: 500px;
    background: #222;
    position: relative;
    border: 1px solid var(--gold);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 2rem;
    background: #111;
}

.about-text h2 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Education Section */
.education-section {
    padding: 100px 0;
    background-color: var(--secondary-bg);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-left: 1px solid var(--gold);
    padding-left: 30px;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.timeline-content .institution {
    color: var(--text-muted);
    font-style: italic;
}

/* Work Section */
.work-section {
    padding: 100px 0;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.work-card {
    position: relative;
    height: 350px;
    background: #151515;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.work-card:hover {
    border-color: var(--gold);
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    /* Placeholder gradient */
    background: linear-gradient(45deg, #111, #222);
}

.work-card:hover .card-image {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.card-overlay h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin: 0;
}

/* Clients/Celebrity */
.clients-section {
    padding: 80px 0;
    background: var(--purple-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.client-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.client-logo:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* Business Section */
.business-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    background: var(--secondary-bg);
    padding: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item .number {
    display: block;
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-item .label {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #2e0933 0%, #000000 70%);
    opacity: 0.6;
}

.cta-section h2 {
    font-size: 3.5rem;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.social-link {
    display: block;
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.social-link:hover {
    color: var(--gold);
}

/* Footer */
footer {
    padding: 30px 0;
    text-align: center;
    font-size: 0.8rem;
    color: #555;
    background: #000;
    border-top: 1px solid #111;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
        /* Hidden by default, toggled via JS to flex */
        flex-direction: column;
        position: fixed;
        /* Changed from absolute to fixed for better mobile UX */
        top: 70px;
        /* Below navbar */
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.98);
        padding: 30px 20px;
        border-bottom: 1px solid var(--gold);
        text-align: center;
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 0;
        font-size: 1.2rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Typography & Spacing */
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
        line-height: 1.1;
    }

    .hero-content .subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .expertise-text {
        font-size: 1rem;
        padding: 0 15px;
    }

    /* Layout Stacking */
    .about-section,
    .education-section,
    .work-section,
    .business-section,
    .clients-section {
        padding: 60px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image-wrapper {
        height: 400px;
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    /* Single column for work cards on mobile */
    .work-card {
        height: 300px;
    }

    .timeline {
        border-left: 2px solid var(--gold);
        padding-left: 20px;
    }

    .timeline-item::before {
        left: -27px;
    }

    .cta-section h2 {
        font-size: 2rem;
        padding: 0 15px;
    }

    .cta-buttons .large {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .floating-social {
        width: 40px;
        height: 40px;
        padding: 8px;
        right: 20px;
        bottom: 20px;
    }
}

/* Animation classes for GSAP */
.fade-in-up,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-fade {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}