:root {
    --color-bg: #070707;
    --color-surface: #111111;
    --color-text: #f0f0f0;
    --color-text-muted: #999999;
    --color-gold: #c59b40;
    --color-gold-light: #e6c57a;
    --color-gold-dark: #8c6a20;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Shippori Mincho', serif;
    
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease-out;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-logo {
    font-size: 2rem;
    font-family: var(--font-body);
    color: var(--color-gold);
    letter-spacing: 0.2em;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-smooth);
}

a:hover {
    color: var(--color-gold);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: background-color var(--transition-smooth), padding var(--transition-smooth);
}

.header.scrolled {
    background-color: rgba(7, 7, 7, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(197, 155, 64, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-list li a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: width var(--transition-smooth);
}

.nav-list li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at center, var(--color-surface) 0%, var(--color-bg) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(197, 155, 64, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(7,7,7,0.3) 0%, rgba(7,7,7,1) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-logo-wrapper {
    margin-bottom: 2rem;
}

.hero-main-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(197, 155, 64, 0.3));
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #a67b27, #fcf6ba, #c59b40, #fbf5b7, #8c6a20);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(197, 155, 64, 0.2);
}

.hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--color-gold);
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Sections */
.section-title {
    font-size: 2rem;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: 0.2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.section-title span {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-gold);
}

.about-text {
    text-align: center;
    font-size: 1.1rem;
    line-height: 2.4;
    color: var(--color-text);
}

/* Glass Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 155, 64, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 4px;
    padding: 5rem 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 155, 64, 0.3);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.coming-soon-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.card-desc {
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(197, 155, 64, 0.1);
    padding: 4rem 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.copyright {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-list {
        display: none; /* Add mobile menu later if needed */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .glass-card {
        padding: 3rem 1.5rem;
    }
}
