:root {
    --bg-color: #000000; /* Pure black */
    --text-main: #f4f1ea; /* Cream/ivory */
    --text-muted: #a3a3a3; /* Neutral grey */
    --gold-1: #d4af37; /* Metallic gold */
    --gold-2: #aa842c; /* Darker gold */
    --glass-bg: rgba(0, 0, 0, 0.4);
    --glass-heavy: rgba(0, 0, 0, 0.7);
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-glow: rgba(212, 175, 55, 0.1);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, .logo-text, .elegant-quote {
    font-family: var(--font-heading);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.gold-text {
    background: linear-gradient(135deg, var(--gold-1), #ffeba8, var(--gold-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.subtitle {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    color: var(--gold-1);
    margin-bottom: 1rem;
}

.mt-4 { margin-top: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* Video Background with Heavy Blur Vibe */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: grayscale(100%) contrast(1.2) brightness(0.7); /* Black and white high-contrast look */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: -1;
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.glass-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 4px; /* Slightly sharp corners for elegance */
    padding: 3rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    position: relative;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.4s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-main);
}

.logo img {
    height: 45px;
    width: 45px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid var(--gold-1);
    box-shadow: 0 0 10px var(--glass-glow);
}

.logo-text {
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 600;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 300;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 1px;
    background: var(--gold-1);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-1);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.icon-btn:hover {
    color: var(--gold-1);
    opacity: 1;
    transform: scale(1.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-family: var(--font-body);
    transition: all 0.4s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    border-radius: 2px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
    color: #000;
    border: 1px solid var(--gold-1);
    font-weight: 700;
    box-shadow: 0 4px 15px var(--glass-glow);
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold-1);
    box-shadow: 0 0 20px var(--glass-glow);
}

.btn-outline {
    background: rgba(255,255,255,0.05);
    color: var(--gold-1);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: var(--gold-1);
    color: #000;
    border-color: var(--gold-1);
}

#copy-ca-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
}

/* Toast */
.toast {
    position: absolute;
    top: 120%;
    right: 0;
    background: var(--gold-1);
    color: #000;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    border-radius: 2px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 700;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Spotlight Hover Effect */
.spotlight-section {
    position: relative;
    overflow: hidden;
}

.spotlight-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-15deg);
}

.spotlight-text {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 900;
    line-height: 0.85;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

.marquee-row {
    display: flex;
    white-space: nowrap;
    width: max-content;
}

.marquee-row span {
    padding-right: 2rem;
}

.marquee-row.left {
    animation: marquee-left 40s linear infinite;
}

.marquee-row.right {
    animation: marquee-right 40s linear infinite;
}

@keyframes marquee-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}

.spotlight-text.dim {
    color: rgba(255, 255, 255, 0.02);
}

.spotlight-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.highlight-wrapper {
    --mouse-x: -1000px;
    --mouse-y: -1000px;
    mask-image: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y), black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y), black 0%, transparent 80%);
    z-index: 1;
}

.spotlight-text.bright {
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 5.5rem);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* About Section */
.about-section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-size: clamp(2.5rem, 3.5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.divider {
    width: 80px;
    height: 1px;
    background: var(--gold-1);
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 300;
}

.elegant-quote {
    font-size: 2.2rem;
    font-style: italic;
    color: var(--gold-1);
    margin: 2.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.elegant-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: var(--gold-1);
    opacity: 0.5;
}

.image-wrapper {
    padding: 1.5rem;
}

.mascot-img {
    width: 100%;
    display: block;
    filter: contrast(1.1) saturate(1.3);
}

/* Corner Accents for Glass Cards */
.corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border-color: var(--gold-1);
    border-style: solid;
    opacity: 0.6;
}

.corner-tl { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.corner-tr { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
.corner-bl { bottom: -1px; left: -1px; border-width: 0 0 1px 1px; }
.corner-br { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }

/* Video Gallery Section */
.gallery-section {
    padding: 4rem 2rem 8rem 2rem;
    position: relative;
    z-index: 10;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.video-card {
    padding: 1rem;
}

.card-video {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%) contrast(1.2);
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 2; grid-row: span 1; }
.bento-tall { grid-column: span 1; grid-row: span 2; }
.bento-small { grid-column: span 1; grid-row: span 1; }

.gallery-img-container {
    padding: 0.5rem;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), z-index 0s;
}

.gallery-img-container:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    z-index: 10;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    filter: grayscale(100%) contrast(1.2);
    transition: filter 0.4s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-img-container:hover .gallery-img {
    transform: scale(1.02);
    filter: grayscale(0%) contrast(1.1) saturate(1.5);
}

/* Download Button Hover Effect */
.download-btn {
    position: absolute;
    top: 15px;
    right: -50px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid var(--gold-1);
    color: var(--gold-1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease, background 0.3s, color 0.3s;
    opacity: 0;
    text-decoration: none;
    z-index: 5;
}

.gallery-img-container:hover .download-btn {
    right: 15px;
    opacity: 1;
}

.download-btn:hover {
    background: var(--gold-1);
    color: #000;
}

/* LARP Reveal Text Section */
.larp-reveal-section {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--bg-color);
    position: relative;
    z-index: 10;
}

.larp-hover-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.larp-reveal-text {
    font-size: clamp(2.5rem, 6vw, 7rem);
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 800;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.4); /* muted gold stroke */
    cursor: default;
    transition: all 0.5s ease;
    white-space: nowrap;
}

.larp-reveal-text:hover {
    color: var(--gold-1);
    -webkit-text-stroke: 0px;
    text-shadow: 0 0 25px var(--gold-1), 0 0 50px rgba(212, 175, 55, 0.5);
    transform: scale(1.03);
}

@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .bento-grid { 
        grid-template-columns: repeat(2, 1fr); 
        grid-auto-rows: 200px; 
    }
    .bento-large { grid-column: span 2; grid-row: span 2; }
    .bento-wide { grid-column: span 2; grid-row: span 1; }
    .bento-tall { grid-column: span 1; grid-row: span 1; }
    .bento-small { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 480px) {
    .bento-grid { display: flex; flex-direction: column; }
    .gallery-img-container { height: 300px; }
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--gold-1);
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links { gap: 1.5rem; }
    .nav-actions { gap: 1rem; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .about-grid, .video-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .glass-card {
        padding: 2rem;
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.visible {
    opacity: 1;
    transform: translate(0);
}

/* Soft 3D Tilt Hover */
.tilt-effect {
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.tilt-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}
