/* assets/css/style.css */

/* Custom CSS overriding or augmenting Tailwind */

:root {
    --gold-primary: #d4af37;
    --gold-hover: #f1d651;
    --dark-bg: #000000;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: #ffffff;
    font-family: 'Inter', 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.tracking-widest {
    letter-spacing: 0.2em;
}

.text-gold {
    color: var(--gold-primary);
}

.bg-gold {
    background-color: var(--gold-primary);
}

.border-gold {
    border-color: var(--gold-primary);
}

/* Premium Heading Styles */
.premium-serif {
    font-family: "Playfair Display", serif;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gold-dot::after {
    content: '.';
    color: var(--gold-primary);
}

/* Navigation Styles */
nav a {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s ease;
}

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

.nav-link-active {
    color: var(--gold-primary);
    text-decoration: underline;
    text-underline-offset: 8px;
}

/* Button Styles */
.btn-gold {
    background-color: var(--gold-primary);
    color: #000000;
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
}

/* Form Styles */
.input-dark {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 1rem;
    width: 100%;
    transition: border-color 0.3s ease;
}

.input-dark:focus {
    border-color: var(--gold-primary);
    outline: none;
}

/* Countdown Styles */
.countdown-item {
    text-align: center;
}

.countdown-number {
    font-size: 4rem;
    font-weight: 300;
    color: var(--gold-primary);
    line-height: 1;
}

.countdown-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #666666;
    margin-top: 0.5rem;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #000000;
}
::-webkit-scrollbar-thumb {
    background: #222222;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

/* Premium Animations */
@keyframes slow-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

@keyframes fade-in-up {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.animate-slow-zoom {
    animation: slow-zoom 20s ease-out forwards;
}

.animate-fade-in-up {
    animation: fade-in-up 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Premium Utilities */
.glass-overlay {
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
}

.premium-shadow {
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.8), 0 0 40px rgba(212,175,55,0.03);
}

.emerald-glow {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.15);
}
