:root {
    --bg-page: #1a1c1b;
    --bg-card: #302f2c;
    --bg-light: #dfddd6;
    --text-primary: #d9fb06;
    --text-secondary: #888680;
    --text-muted: #302f2c;
    --text-inverse: #1a1c1b;
    --border-light: rgba(63, 72, 22, 0.5);
    --border-medium: #3f4816;
    --border-strong: #888680;
    --brand-primary: #d9fb06;
    --brand-hover: rgba(217, 251, 6, 0.8);
    --brand-active: rgba(217, 251, 6, 0.6);
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background-color: var(--bg-page);
    color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
.navbar-nav .nav-link {
    color: var(--bg-light) !important;
    font-weight: 500;
    padding: 0.75rem 1.25rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--brand-primary) !important;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--brand-primary);
    color: var(--text-inverse);
    border: none;
    border-radius: 50px;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--brand-hover);
    transform: scale(1.03);
    color: var(--text-inverse);
}

.btn-secondary-custom {
    background-color: transparent;
    color: var(--brand-primary);
    border: 1px solid var(--brand-primary);
    border-radius: 50px;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background-color: var(--brand-primary);
    color: var(--text-inverse);
    transform: scale(1.03);
}

/* Typography */
.heading-1 {
    font-weight: 900;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.9;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.heading-2 {
    font-weight: 900;
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--text-primary);
}

.heading-4 {
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 1.1;
    color: var(--text-primary);
}

.heading-5 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.2;
}

.heading-6 {
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.3;
}

/* Cards */
.venue-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-medium);
    transition: all 0.3s ease;
    border-radius: 0;
}

.venue-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-5px);
}

.venue-card img {
    height: 250px;
    object-fit: cover;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 40px 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, transparent 100%);
    opacity: 0.7;
}

/* Footer Links */
footer a:hover {
    color: var(--brand-primary) !important;
}

/* Form Controls */
.form-control:focus,
.form-select:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 0.25rem rgba(217, 251, 6, 0.25);
}

/* Badge */
.badge-custom {
    background-color: var(--border-medium);
    color: var(--brand-primary);
    font-size: 11px;
    text-transform: uppercase;
    padding: 5px 10px;
}

/* Responsive */
@media (max-width: 767px) {
    .hero-section {
        padding: 80px 20px 60px;
        min-height: 80vh;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
}
