/* --- Global Reset & Variables --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4af37;
    --gold-hover: #b4932a;
    --dark-bg: #0f0f0f;
    --card-bg: #1a1a1a;
    --text-white: #ffffff;
    --text-grey: #cccccc;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Layout Utilities --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

.bg-dark {
    background-color: #141414;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* --- Navigation --- */
.navbar {
    background: rgba(15, 15, 15, 0.98);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.nav-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

/* Left Section */
.nav-left {
    display: flex;
    justify-content: flex-start;
}

.nav-logo-img {
    height: 60px;
    width: auto;
    display: block;
}

/* Center Section (TEXT VERSION) */
.nav-center {
    display: flex;
    justify-content: center;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    
    /* Gold Gradient Effect for Text */
    background: linear-gradient(to bottom, #fbf5b7, #bf953f, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Right Section */
.nav-right {
    display: flex;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-white);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--gold);
}

.btn-nav {
    border: 1px solid var(--gold);
    padding: 8px 20px;
    border-radius: 5px;
}

/* --- Hero Section (UPDATED: No Image, Dark Gradient) --- */
.hero {
    height: 90vh;
    /* This creates a luxury spotlight effect (lighter center, dark edges) */
    background: radial-gradient(circle at center, #2a2a2a 0%, #000000 100%);
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.subheading {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-grey);
}

.micro-line {
    font-size: 1rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 40px;
}

.btn-gold {
    background-color: var(--gold);
    color: #000;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-gold:hover {
    background-color: var(--gold-hover);
}

/* --- Games Grid --- */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.game-card {
    background: var(--card-bg);
    padding: 30px;
    border: 1px solid #333;
    border-radius: 8px;
    transition: transform 0.3s, border-color 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.game-card h3 {
    margin-bottom: 15px;
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}
.contact-info a:hover {
    color: var(--text-white);
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    border-radius: 5px;
    border: 1px solid #333;
    color: #666;
}

/* --- Footer --- */
footer {
    background: #000;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #222;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
    .nav-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 15px;
        text-align: center;
    }

    .nav-left, .nav-center, .nav-right {
        justify-content: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .hero h1 { font-size: 2.5rem; }
    .contact-grid { grid-template-columns: 1fr; }
}