/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;700&family=Great+Vibes&family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
    --emerald-dark: #022c22;
    --emerald-main: #0f766e;
    --emerald-light: #115e59;
    --gold-dark: #b48811;
    --gold-main: #d4af37;
    --gold-light: #fcd34d;
    --glass-bg: rgba(2, 44, 34, 0.65);
    --glass-border: rgba(212, 175, 55, 0.3);
    --white-soft: #f8fafc;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--emerald-dark);
    color: var(--white-soft);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, .font-luxury {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

.font-script {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.text-gold {
    color: var(--gold-main);
}

.text-gold-gradient {
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0px 0px 20px rgba(250, 204, 21, 0.3);
}

/* --- UTILS --- */
.bg-emerald-gradient {
    background: linear-gradient(180deg, var(--emerald-dark) 0%, var(--emerald-main) 50%, var(--emerald-dark) 100%);
}

.overflow-hidden { overflow: hidden; }

/* --- GLASSMORPHISM CARD --- */
.glass-card {
    background: rgba(15, 118, 110, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.2);
    border-color: var(--gold-main);
}

/* --- BUTTONS --- */
.btn-gold {
    background: linear-gradient(90deg, #b38728 0%, #fcf6ba 50%, #aa771c 100%);
    background-size: 200% auto;
    color: var(--emerald-dark);
    font-weight: 700;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-gold:hover {
    background-position: right center;
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.7);
    color: #000;
}

/* --- SIGER ORNAMENT PLACEHOLDER --- */
.siger-icon {
    font-size: 3rem;
    background: linear-gradient(to bottom, #fcf6ba, #b38728);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(250, 204, 21, 0.5));
}

/* --- ANIMATIONS --- */
/* AOS Custom */
.reveal-text {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-text.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s ease;
}
.scale-in.visible { opacity: 1; transform: scale(1); }

/* Floating Particles Container */
#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* 3D TILT EFFECT CLASS */
.tilt-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* AUDIO CONTROL */
.audio-fab {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--gold-main);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.spin-slow {
    animation: spin 8s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* SECTION SPECIFIC */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(2, 44, 34, 0.3), var(--emerald-dark));
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2;
}

.timeline-step {
    border-left: 2px solid var(--gold-main);
    padding-left: 30px;
    position: relative;
    margin-bottom: 50px;
}
.timeline-step::before {
    content: '';
    position: absolute;
    left: -11px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--gold-main);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--gold-main);
}

.gallery-img {
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--gold-main);
    transition: transform 0.5s ease;
}
.gallery-img:hover { transform: scale(1.05); }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .display-1 { font-size: 3.5rem; }
    .tilt-3d { transform: none !important; } /* Disable heavy tilt on mobile */
}