:root {
    --hot-pink: #F10C65;
    --warm-gold: #FBC81B;
    --deep-black: #0a0a0a;
    --off-black: #1a1a1a;
    --light-gray: #d4d4d4;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--deep-black);
    color: var(--light-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
header {
    text-align: center;
    padding: 100px 20px 40px;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: #ffffff;
}

h1 span {
    font-weight: 700;
    background: linear-gradient(135deg, var(--hot-pink), var(--warm-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light-gray);
    opacity: 0.9;
}

.tagline em {
    font-style: normal;
    color: var(--hot-pink);
    font-weight: 400;
}

/* Tabs */
.tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 60px 0 0;
    border-bottom: 1px solid rgba(251, 200, 27, 0.2);
    flex-wrap: wrap;
}

.tab-button {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 20px 35px;
    background: transparent;
    border: none;
    color: rgba(212, 212, 212, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    position: relative;
}

.tab-button:hover {
    color: var(--warm-gold);
}

.tab-button.active {
    color: var(--hot-pink);
    border-bottom-color: var(--hot-pink);
}

.tab-button em {
    font-style: normal;
    color: var(--hot-pink);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    padding: 80px 0;
    min-height: 500px;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--warm-gold);
    letter-spacing: 2px;
}

.bio {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(212, 212, 212, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
}

.contact-link {
    display: inline-block;
    padding: 15px 45px;
    background: transparent;
    border: 1px solid var(--hot-pink);
    color: var(--hot-pink);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--hot-pink);
    color: var(--deep-black);
    box-shadow: 0 0 20px rgba(241, 12, 101, 0.3);
}

/* Projects Section */
.project-category {
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: var(--warm-gold);
    letter-spacing: 2px;
}

.section-title em {
    font-style: normal;
    color: var(--hot-pink);
}

.category-description {
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(212, 212, 212, 0.6);
    margin-bottom: 50px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.project-card {
    background: var(--off-black);
    border: 1px solid rgba(251, 200, 27, 0.2);
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--hot-pink);
    transition: width 0.4s ease;
}

.project-card:hover::before {
    width: 100%;
}

.project-card:hover {
    border-color: var(--hot-pink);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(241, 12, 101, 0.2);
}

.project-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--warm-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.project-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.project-type {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--hot-pink);
    margin-bottom: 20px;
}

.project-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(212, 212, 212, 0.8);
    margin-bottom: 30px;
    font-weight: 300;
}

.project-link {
    display: inline-block;
    padding: 12px 35px;
    background: transparent;
    border: 1px solid var(--warm-gold);
    color: var(--warm-gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: var(--warm-gold);
    color: var(--deep-black);
    box-shadow: 0 0 20px rgba(251, 200, 27, 0.3);
}

/* Coming Soon / Mystery */
.coming-soon, .mystery {
    opacity: 0.6;
}

.coming-soon .project-link,
.mystery .project-link {
    border-color: rgba(212, 212, 212, 0.3);
    color: rgba(212, 212, 212, 0.5);
    cursor: not-allowed;
}

.coming-soon .project-link:hover,
.mystery .project-link:hover {
    background: transparent;
    color: rgba(212, 212, 212, 0.5);
    box-shadow: none;
}

/* Mystery Tab Empty State */
.mystery-content {
    text-align: center;
    padding: 100px 20px;
}

.mystery-content .mystery-icon {
    font-size: 80px;
    margin-bottom: 30px;
    opacity: 0.3;
}

.mystery-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: rgba(212, 212, 212, 0.4);
    font-style: italic;
}

/* Footer */
footer {
    padding: 20px 20px 10px;
    text-align: center;
    border-top: 1px solid rgba(251, 200, 27, 0.2);
    margin-top: 60px;
}

.footer-credit {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(212, 212, 212, 0.6);
    line-height: 1.8;
}

.footer-credit strong {
    color: var(--hot-pink);
    font-weight: 600;
}

.footer-year {
    font-size: 12px;
    margin-top: 20px;
    color: rgba(212, 212, 212, 0.4);
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    header {
        padding: 60px 20px 30px;
    }

    h1 {
        font-size: 42px;
    }

    .tagline {
        font-size: 12px;
    }

    .tabs {
        margin: 40px 0 0;
    }

    .tab-button {
        font-size: 11px;
        padding: 15px 20px;
    }

    .tab-content {
        padding: 50px 0;
        min-height: 400px;
    }

    .project-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .project-card {
        padding: 35px 25px;
    }
}
