/* Hazelvalea Casino Hotel - Premium Styling */
:root {
    --hzvl-col-bg: #0b0f12;
    --hzvl-col-bg-alt: #161b22;
    --hzvl-col-text: #e1e6eb;
    --hzvl-col-text-muted: #9aa5b1;
    --hzvl-col-accent: #d4af37; /* Gold */
    --hzvl-col-accent-hover: #f1c40f;
    --hzvl-col-brand: #722f37; /* Wine/Burgundy */
    
    --hzvl-font-head: 'Playfair Display', serif;
    --hzvl-font-body: 'Lato', sans-serif;
    
    --hzvl-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --hzvl-radius: 4px;
    --hzvl-radius-lg: 12px;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, .hzvl-brand-name {
    font-family: var(--hzvl-font-head);
    font-weight: 700;
    color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--hzvl-transition);
}

.hzvl-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.hzvl-topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(11, 15, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
}

.hzvl-topbar-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hzvl-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hzvl-logo-abbr {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--hzvl-col-brand), #4a1c24);
    color: var(--hzvl-col-accent);
    font-family: var(--hzvl-font-head);
    font-size: 20px;
    font-weight: 700;
    border-radius: var(--hzvl-radius);
    border: 1px solid var(--hzvl-col-accent);
}

.hzvl-logo-text {
    display: flex;
    flex-direction: column;
}

.hzvl-brand-name {
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: 1px;
}

.hzvl-brand-sub {
    font-size: 12px;
    color: var(--hzvl-col-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hzvl-nav {
    display: flex;
    gap: 32px;
}

.hzvl-nav-link {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--hzvl-col-text);
    position: relative;
}

.hzvl-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--hzvl-col-accent);
    transition: var(--hzvl-transition);
}

.hzvl-nav-link:hover::after {
    width: 100%;
}

.hzvl-badge-wrapper {
    display: flex;
    align-items: center;
}

.hzvl-badge {
    padding: 8px 16px;
    border: 1px solid var(--hzvl-col-text-muted);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--hzvl-col-text-muted);
}

/* Main Content */
.hzvl-main-content {
    padding-top: 80px;
}

/* Hero Showcase */
.hzvl-hero-showcase {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    padding: 60px 24px;
}

.hzvl-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(11, 15, 18, 0.95) 0%, rgba(11, 15, 18, 0.7) 50%, rgba(11, 15, 18, 0.4) 100%);
    z-index: 1;
}

.hzvl-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: max(24px, calc((100vw - 1280px) / 2));
}

.hzvl-hero-kicker {
    display: inline-block;
    color: var(--hzvl-col-accent);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 24px;
    position: relative;
    padding-left: 60px;
}

.hzvl-hero-kicker::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 1px;
    background-color: var(--hzvl-col-accent);
}

.hzvl-hero-title {
    font-size: clamp(48px, 6vw, 84px);
    line-height: 1.1;
    margin-bottom: 32px;
}

.hzvl-hero-desc {
    font-size: 18px;
    color: var(--hzvl-col-text);
    max-width: 600px;
    margin-bottom: 64px;
    font-weight: 300;
}

.hzvl-hero-infogrid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hzvl-info-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 20px;
    border-left: 2px solid var(--hzvl-col-accent);
}

.hzvl-info-label {
    font-size: 12px;
    color: var(--hzvl-col-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hzvl-info-val {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

/* Sections Common */
.hzvl-sect-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.hzvl-h2-title {
    font-size: 42px;
    margin-bottom: 24px;
}

.hzvl-h2-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--hzvl-col-accent);
    margin: 24px auto 0;
}

.hzvl-sect-intro {
    font-size: 18px;
    color: var(--hzvl-col-text-muted);
}

.hzvl-grid-3col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

/* Wellbeing Section */
.hzvl-wellbeing-sect {
    padding: 120px 0;
    background-color: var(--hzvl-col-bg-alt);
}

.hzvl-feature-box {
    background-color: var(--hzvl-col-bg);
    padding: 48px 32px;
    border-radius: var(--hzvl-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--hzvl-transition);
}

.hzvl-feature-box:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hzvl-box-kicker {
    display: inline-block;
    font-size: 12px;
    color: var(--hzvl-col-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.hzvl-h3-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.hzvl-box-text {
    color: var(--hzvl-col-text-muted);
    margin-bottom: 32px;
}

.hzvl-box-list {
    list-style: none;
}

.hzvl-box-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    font-size: 15px;
}

.hzvl-box-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--hzvl-col-accent);
}

/* Gaming / Entertainment Section */
.hzvl-gaming-sect {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--hzvl-col-bg), var(--hzvl-col-bg-alt));
}

.hzvl-dark-box {
    background: linear-gradient(145deg, #12181d, #0b0f12);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Footer */
.hzvl-site-footer {
    background-color: #050709;
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hzvl-footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.hzvl-footer-slogan {
    font-size: 36px;
    text-align: center;
    color: var(--hzvl-col-accent);
    margin-bottom: 80px;
}

.hzvl-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 64px;
    margin-bottom: 80px;
}

.hzvl-footer-col-title {
    font-size: 20px;
    margin-bottom: 24px;
    color: #ffffff;
}

.hzvl-footer-text {
    color: var(--hzvl-col-text-muted);
    font-size: 15px;
}

.hzvl-contact-list {
    list-style: none;
}

.hzvl-contact-item {
    color: var(--hzvl-col-text-muted);
    font-size: 15px;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
}

.hzvl-contact-item:nth-child(1)::before { content: '📍'; position: absolute; left: 0; }
.hzvl-contact-item:nth-child(2)::before { content: '📞'; position: absolute; left: 0; }
.hzvl-contact-item:nth-child(3)::before { content: '✉️'; position: absolute; left: 0; }

.hzvl-footer-bottom {
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.hzvl-footer-nav {
    display: flex;
    gap: 24px;
}

.hzvl-footer-link {
    color: var(--hzvl-col-text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hzvl-footer-link:hover {
    color: var(--hzvl-col-accent);
}

.hzvl-copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 992px) {
    .hzvl-nav {
        display: none;
    }
    .hzvl-hero-infogrid {
        gap: 24px;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hzvl-h2-title { font-size: 32px; }
    .hzvl-sect-heading { margin-bottom: 48px; }
    .hzvl-hero-showcase { padding: 40px 24px; }
    .hzvl-hero-title { font-size: 40px; }
    .hzvl-footer-bottom { flex-direction: column; text-align: center; }
}
