/* assets/css/style.css - Base Styles Only */

:root {
    --primary-color: #ffd700;
    --primary-dark: #b8860b;
    --primary-light: #ffeb3b;
    --bg-color: #050505;
    --surface-color: #111111;
    --surface-hover: #1f1f1f;
    --text-color: #f0f0f0;
    --text-muted: #a0a0a0;

    --font-heading: 'Cinzel', serif;
    --font-subheading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --gradient-gold: linear-gradient(135deg, #b8860b, #ffd700, #b8860b);
}

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

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

h1 {
    line-height: 1.1;
}

h2 {
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Base Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Base Button Styles */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #000;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

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

.btn-large {
    font-size: 1rem;
    padding: 16px 40px;
}

.btn-nav {
    background: var(--primary-color);
    color: #000;
    padding: 8px 20px;
    font-weight: bold;
    border-radius: 2px;
}

/* Header Base */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s;
}

#main-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: all 0.4s;
}

#main-header.scrolled .logo img {
    height: 45px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hero Base */
.hero {
    min-height: 100vh;
    background: url('../images/hero-bg.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.eyebrow {
    display: block;
    font-family: var(--font-heading);
    color: var(--primary-color);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 1rem;
}

.hero-content h1 {
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
}

.hero-content p {
    color: #ddd;
    margin-bottom: 40px;
    font-weight: 300;
}

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

/* Sections Base */
.section-story {
    padding: 100px 0;
    background: radial-gradient(circle at top right, #1a1500 0%, var(--bg-color) 40%);
}

.section-characters {
    padding: 100px 0;
    background: #0a0a0a;
}

.section-why {
    padding: 100px 0;
    background: linear-gradient(to bottom, #0a0a0a, #000);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Card Base */
.char-card {
    background: var(--surface-color);
    border: 1px solid #222;
    padding: 30px;
    text-align: center;
    transition: all 0.4s;
}

.char-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.feature-box {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-box .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.ornamentbox {
    border: 2px solid var(--primary-color);
    padding: 50px;
    text-align: center;
    position: relative;
}

/* CTA */
.cta-banner {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/hero-bg.png') fixed center/cover;
}

.cta-banner h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-banner p {
    color: #ccc;
    margin-bottom: 40px;
}

/* Footer */
footer {
    padding: 60px 0 40px;
    background: #000;
    border-top: 1px solid #222;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #666;
    font-size: 0.9rem;
}

.copyright {
    color: #444;
    font-size: 0.8rem;
}

/* Animations */
.glow {
    animation: glow-pulse 3s infinite;
}

@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}