/* Fonts */
@font-face {
    font-family: 'Agency FB';
    src: url('assets/fonts/AgencyFB-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Rubik';
    src: url('assets/fonts/Rubik-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Rubik';
    src: url('assets/fonts/Rubik-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* CSS Variables for Brand Colors */
:root {
    --gold: #FFCF45;
    --dark-gray: #4D4D4D;
    --white: #FFFFFF;
    --black: #000000;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Rubik', sans-serif;
    background-color: var(--dark-gray);
    color: var(--white);
}

body {
    overflow-x: hidden;
}

/* Navigation Menu */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #111111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    border-bottom: 2px solid #FFCF45;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-nasdull {
    font-family: 'Agency FB', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    text-transform: uppercase;
}

.brand-studio {
    font-family: 'Agency FB', sans-serif;
    font-size: 1rem;
    color: var(--white);
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--gold);
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--white);
}

.nav-right {
    color: var(--gold);
    font-weight: bold;
    font-size: 14px;
}

/* Intro Section */
#intro {
    position: relative;
    width: 100%;
    height: 90vh;
    /* background-color: var(--black); */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#tsparticles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.intro-content {
    position: relative;
    z-index: 2;
    text-align: center;
    pointer-events: none; /* Let clicks pass through to particles if interactive */
}

/* Easy to change image - can use object-fit or max-width */
.center-logo {
    max-width: 90%;
    max-height: 80vh;
    width: auto;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 209, 69, 0.349));
}

/* Floating Logo */
#floating-logo {
    position: fixed;
    width: 90px;
    height: 90px;
    background-color: var(--black);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 101; /* Stay above navbar */
    opacity: 0;
    transform: scale(2) translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

#floating-logo.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

#floating-logo img {
    width: 80%;
    height: auto;
    border-radius: 50%; /* Just in case logo is square */
}

/* Dummy Sections */
.dummy-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 20px 20px; /* Padding top for fixed navbar */
    text-align: center;
}

.dummy-section:nth-child(even) {
    background-color: #2a2a2a;
}

.dummy-section:nth-child(odd) {
    background-color: var(--dark-gray);
}

.section-content h2 {
    font-family: 'Agency FB', sans-serif;
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #ccc;
}

/* Centered Nav */
.centered-nav {
    justify-content: center !important;
}

.centered-nav .nav-brand {
    align-items: center;
}

/* Coming Soon Text */
.coming-soon-text {
    font-family: 'Agency FB', sans-serif;
    font-size: 4rem;
    color: var(--gold);
    letter-spacing: 5px;
    margin-top: 20px;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

/* Contact Section & Form */
.contact-section {
    background-color: var(--dark-gray);
    position: relative; /* Allows absolute positioning for the support text */
}

.contact-section .section-content {
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 400px; /* Increased from 500px */
    margin: 20px auto;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #333;
    border: 1px solid #555;
    color: var(--white);
    font-family: 'Rubik', sans-serif;
    border-radius: 8px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form button {
    align-self: center;
    width: auto;
    min-width: 150px;
    padding: 12px 20px;
    background-color: var(--gold);
    color: var(--black);
    font-family: 'Rubik', sans-serif;
    font-weight: bold;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #e6b830;
}

.support-text {
    font-family: 'Rubik', sans-serif;
    font-size: 1.1rem;
    color: #ccc;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.support-text a {
    font-family: 'Agency FB', sans-serif;
    font-size: 1.3rem;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 1px;
}

.support-text a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 20px;
    background-color: #111;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #333;
}

