@font-face {
    font-family: 'The Seasons';
    src: url('assets/The.Seasons/The.Seasons/The.Seasons/The Seasons Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'The Seasons';
    src: url('assets/The.Seasons/The.Seasons/The.Seasons/The Seasons Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BrittanySignature';
    src: url('assets/brittany_signature/BrittanySignature.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Color Palette */
    --bg-dark: #0a0a0c;
    --bg-surface: #121216;
    --accent-primary: #8a2be2; /* Neon Purple */
    --accent-glow: rgba(138, 43, 226, 0.4);
    --accent-secondary: #00ffff; /* Cyan */
    --text-main: #f0f0f5;
    --text-muted: #a0a0b0;
    
    /* Typography */
    --font-brand: 'The Seasons', 'Playfair Display', serif;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'The Seasons', 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo, .hero h1, .footer-logo {
    font-family: var(--font-brand) !important;
    text-transform: none;
    font-weight: 700;
    transform: rotate(180deg);
    display: inline-block;
}



/* Typography & Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-heading);
}

.btn-primary {
    background: transparent;
    color: #fff;
    border: 2px solid var(--accent-primary);
}

.btn-primary:hover {
    background: var(--accent-primary);
    color: var(--bg-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--accent-secondary);
}

.btn-secondary:hover {
    background: var(--accent-secondary);
    color: var(--bg-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--text-muted);
}

.btn-outline:hover {
    background: var(--text-main);
    color: var(--bg-dark);
    border-color: var(--text-main);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn.disabled {
    opacity: 0.5;
    pointer-events: none;
    border: 2px solid var(--text-muted);
}

/* Navbar */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 4px;
}



/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(10, 10, 12, 0.4) 0%, rgba(10, 10, 12, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 20px var(--accent-glow);
    animation: glowText 3s infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    z-index: 3;
    pointer-events: none;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--accent-secondary);
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@keyframes glowText {
    0% { text-shadow: 0 0 10px rgba(138, 43, 226, 0.5); }
    100% { text-shadow: 0 0 30px rgba(138, 43, 226, 1), 0 0 40px var(--accent-secondary); }
}



/* Footer */
footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 30px 0;
    text-align: center;
    border-top: none;
    z-index: 10;
}

.footer-signature {
    font-family: 'BrittanySignature', cursive;
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: -15px;
    transform: rotate(-3deg);
    display: inline-block;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-primary);
}

footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 4rem; }
    header { padding: 15px 20px; text-align: center; }
}
