:root {
    /* Color Palette */
    --black: #0a0a0a;
    --dark: #141414;
    --emerald: #044b2d;
    --emerald-light: #0a7949;
    --gold: #D4AF37;
    --gold-hover: #b5952f;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    
    /* Fonts */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* For custom cursor */
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    color: var(--gold);
    font-weight: 600;
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 1px solid var(--emerald-light);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease, background 0.3s ease;
}

/* Loader */
#loader {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: var(--black);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
    color: var(--gold);
}

.loader-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--emerald-light);
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 5rem 0;
}

.bg-dark { background-color: var(--dark); }
.bg-black { background-color: var(--black); }

.grid-2, .grid-3, .grid-4 {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background: var(--gold-hover);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Glassmorphism Elements */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links .nav-btn {
    color: var(--black);
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    color: var(--gold);
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-icon { display: block; }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(10,10,10,0.8), rgba(10,10,10,0.9)), url('https://images.unsplash.com/photo-1599839619722-39751411ea63?w=1600&q=80') center/cover fixed;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Floating Elements Animation */
.billiard-float {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(4,75,45,0.4), transparent);
    filter: blur(20px);
    animation: float 8s infinite ease-in-out;
}

.float-2 {
    background: radial-gradient(circle at 30% 30%, rgba(212,175,55,0.2), transparent);
    right: 10%;
    bottom: 20%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-50px) scale(1.1); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.divider {
    height: 3px;
    width: 60px;
    background: var(--gold);
    margin: 0 auto;
}

/* Features */
.feature-card {
    text-align: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.feature-card:hover {
    background: linear-gradient(to top, rgba(4,75,45,0.1), transparent);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--emerald-light);
    margin-bottom: 1rem;
}

/* Stats */
.stat-box {
    text-align: center;
    padding: 2rem;
    background: rgba(4,75,45,0.1);
    border-radius: 8px;
    border: 1px solid rgba(4,75,45,0.3);
}

.stat-box span {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold);
    font-family: var(--font-heading);
}

/* Masonry Gallery */
.masonry-gallery {
    column-count: 1;
    column-gap: 1.5rem;
}

@media (min-width: 768px) {
    .masonry-gallery { column-count: 2; }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(4,75,45,0.9), rgba(10,10,10,0.9)), url('https://images.unsplash.com/photo-1542831252-0c91cc7d0d04?w=1600&q=80') center/cover fixed;
}

/* Footer & Map */
.contact-info ul {
    list-style: none;
    margin: 1.5rem 0;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--emerald-light);
}

.social-icons a {
    color: var(--text-main);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--gold);
}

.map-container {
    height: 100%;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.copyright {
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
}

/* Animations / Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Actions */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.float-call {
    right: 30px;
    background: var(--emerald-light);
}

.float-top {
    right: 90px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: none;
}

.float-top.visible {
    opacity: 1;
    pointer-events: all;
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* Fix interactions on links for custom cursor */
a, button {
    cursor: none;
}