* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #0a0a0a;
    color: #e8e8e8;
    overflow-x: hidden;
}

/* Header/Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 5%;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f5a962;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
}

.productions-text
{
    color: #CCAB7B;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #c8c8c8;
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f5a962;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: radial-gradient(ellipse at center, #1a1410 0%, #0a0a0a 70%);
}

.hero-logo {
    width: 280px;
    height: 280px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.hero-logo img {
    height: 100%;
    object-fit: contain;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.3rem;
    margin-bottom: 1rem;
    color: #f5a962;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 1.3rem;
    color: #b8b8b8;
    max-width: 700px;
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* About Section */
.about {
    padding: 6rem 5%;
    background: #0f0f0f;
    border-top: 1px solid #222;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    margin-bottom: 2rem;
    color: #f5a962;
}

.about p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #b8b8b8;
    margin-bottom: 1.5rem;
}

/* Projects Section */
.projects {
    padding: 6rem 5%;
    background: #0a0a0a;
}

.projects h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    margin-bottom: 4rem;
    color: #f5a962;
    text-align: center;
}

.projects-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.project-card {
    background: #151515;
    border: 1px solid #222;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: #f5a962;
}

.project-status {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
    background: rgba(245, 169, 98, 0.1);
    color: #f5a962;
    border: 1px solid #f5a962;
}

.project-card h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #e8e8e8;
}

.project-card .genre {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 1rem;
}

.project-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #b8b8b8;
    margin-bottom: 1.5rem;
}

.project-link {
    display: inline-block;
    color: #f5a962;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.project-link:hover {
    border-color: #f5a962;
}

/* Contact Section */
.contact {
    padding: 6rem 5%;
    background: #0f0f0f;
    border-top: 1px solid #222;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    margin-bottom: 2rem;
    color: #f5a962;
    text-align: center;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #b8b8b8;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 1rem;
    color: #e8e8e8;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f5a962;
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.form-status {
    display: none;
    margin: 0 0 1rem;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 600;
    line-height: 1.3;
    opacity: 0;
    text-align: center;
    transform: translateY(-6px);
    transition: opacity .25s ease, transform .25s ease;
    border: 1px solid transparent;
}

.form-status.is-visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.form-status.is-success {
    background: rgba(22,163,74,.10);
    color: #16a34a;
    border-color: rgba(22,163,74,.35);
}

.form-status.is-error {
    background: rgba(220,38,38,.10);
    color: #dc2626;
    border-color: rgba(220,38,38,.35);
}

.submit-btn {
    background: transparent;
    border: 2px solid #f5a962;
    color: #f5a962;
    padding: 1.2rem 3rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
}

.submit-btn:hover {
    background: #f5a962;
    color: #0a0a0a;
}

.submit-btn[disabled] {
    opacity: .7;
    cursor: not-allowed;
}

/* Footer */
footer {
    padding: 3rem 5%;
    background: #000;
    text-align: center;
    border-top: 1px solid #222;
}

.social-links {
    /* display: flex; */
    display: none; /** hidden for now **/
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #f5a962;
}

footer p {
    color: #666;
    font-size: 0.85rem;
    letter-spacing: 0.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 120px;
    }

    html
    {
        scroll-padding-top: 135px;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 0.2rem;
    }

    .hero-logo {
        width: 200px;
        height: 200px;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-top: 1rem;
    }

    .nav-links a {
        display: block;
        width: 100%;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .about h2,
    .projects h2,
    .contact h2 {
        font-size: 2rem;
    }
}