/* css/style.css - Ordenhofe Casino Hotel */

:root {
    --ordhf-color-bg: #0b0c10;
    --ordhf-color-bg-alt: #13151c;
    --ordhf-color-gold: #d4af37;
    --ordhf-color-gold-light: #f5d76e;
    --ordhf-color-red: #9e1b32;
    --ordhf-color-red-dark: #630c1d;
    --ordhf-color-text: #e0e0e0;
    --ordhf-color-text-muted: #a0a0a0;
    
    --ordhf-font-heading: 'Playfair Display', serif;
    --ordhf-font-body: 'Lato', sans-serif;
    
    --ordhf-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--ordhf-color-bg);
    color: var(--ordhf-color-text);
    font-family: var(--ordhf-font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, strong {
    font-family: var(--ordhf-font-heading);
    font-weight: 700;
}

.ordhf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.ordhf-top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

.ordhf-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ordhf-logo-box {
    width: 50px;
    height: 50px;
    border: 2px solid var(--ordhf-color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.ordhf-logo-text {
    font-family: var(--ordhf-font-heading);
    color: var(--ordhf-color-gold);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.ordhf-brand-title {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.ordhf-brand-title strong {
    color: var(--ordhf-color-gold-light);
    font-size: 1.25rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ordhf-brand-title span {
    font-size: 0.8rem;
    color: var(--ordhf-color-text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ordhf-age-badge {
    background: var(--ordhf-color-red);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--ordhf-font-heading);
    box-shadow: 0 0 15px rgba(158, 27, 50, 0.5);
    border: 2px solid var(--ordhf-color-red-dark);
}

/* Hero Section */
.ordhf-hero-section {
    padding: 12rem 0 6rem;
    background: radial-gradient(circle at top, #1a1c23 0%, var(--ordhf-color-bg) 70%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ordhf-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ordhf-hero-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--ordhf-color-gold);
    border-radius: 30px;
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
}

.ordhf-hero-title {
    font-size: 5rem;
    color: var(--ordhf-color-gold-light);
    margin-bottom: 1.5rem;
    letter-spacing: 5px;
    text-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.ordhf-hero-desc {
    max-width: 700px;
    font-size: 1.2rem;
    color: var(--ordhf-color-text);
    margin-bottom: 4rem;
    line-height: 1.8;
}

.ordhf-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.ordhf-hero-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--ordhf-transition);
}

.ordhf-hero-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.ordhf-hero-card h3 {
    color: var(--ordhf-color-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ordhf-hero-card p {
    color: var(--ordhf-color-text-muted);
    font-size: 0.95rem;
}

/* Common Section Styles */
.ordhf-resp-section,
.ordhf-gaming-section {
    padding: 8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ordhf-gaming-section {
    background: var(--ordhf-color-bg-alt);
}

.ordhf-section-head {
    font-size: 3rem;
    color: var(--ordhf-color-gold-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

.ordhf-section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    color: var(--ordhf-color-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.ordhf-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.ordhf-feature-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--ordhf-transition);
    position: relative;
    overflow: hidden;
}

.ordhf-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ordhf-color-red), var(--ordhf-color-gold));
    opacity: 0;
    transition: var(--ordhf-transition);
}

.ordhf-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(212, 175, 55, 0.2);
}

.ordhf-feature-item:hover::before {
    opacity: 1;
}

.ordhf-feature-kicker {
    display: inline-block;
    color: var(--ordhf-color-red);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.ordhf-feature-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.ordhf-feature-text {
    color: var(--ordhf-color-text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.ordhf-feature-list {
    list-style: none;
}

.ordhf-feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--ordhf-color-text);
    font-size: 0.9rem;
}

.ordhf-feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--ordhf-color-gold);
}

/* Footer */
.ordhf-footer-area {
    background: #050608;
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.ordhf-footer-slogan {
    text-align: center;
    font-family: var(--ordhf-font-heading);
    font-size: 2.5rem;
    color: var(--ordhf-color-gold);
    margin-bottom: 4rem;
    font-style: italic;
}

.ordhf-footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.ordhf-footer-col h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ordhf-footer-col p {
    color: var(--ordhf-color-text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.ordhf-footer-contact p {
    margin-bottom: 1rem;
}

.ordhf-footer-contact strong {
    color: var(--ordhf-color-gold-light);
}

.ordhf-footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.ordhf-footer-link {
    color: var(--ordhf-color-text);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: var(--ordhf-transition);
}

.ordhf-footer-link:hover {
    color: var(--ordhf-color-gold);
}

.ordhf-footer-bottom {
    text-align: center;
    color: var(--ordhf-color-text-muted);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
    .ordhf-hero-grid,
    .ordhf-feature-grid,
    .ordhf-footer-cols {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ordhf-hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .ordhf-hero-grid,
    .ordhf-feature-grid,
    .ordhf-footer-cols {
        grid-template-columns: 1fr;
    }
    
    .ordhf-hero-title {
        font-size: 3rem;
    }
    
    .ordhf-section-head {
        font-size: 2.5rem;
    }
    
    .ordhf-brand-title {
        display: none;
    }
    
    .ordhf-footer-nav {
        flex-direction: column;
        align-items: center;
    }
}

/* Cookie Banner */
.ordhf-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 12, 16, 0.95);
    border-top: 2px solid var(--ordhf-color-gold);
    z-index: 9999;
    padding: 1rem 0;
    backdrop-filter: blur(5px);
}

.ordhf-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.ordhf-cookie-content p {
    font-size: 0.85rem;
    color: var(--ordhf-color-text-muted);
    margin: 0;
}

.ordhf-cookie-btn {
    background: var(--ordhf-color-gold);
    color: var(--ordhf-color-bg);
    border: none;
    padding: 0.5rem 1.5rem;
    font-family: var(--ordhf-font-heading);
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--ordhf-transition);
}

.ordhf-cookie-btn:hover {
    background: var(--ordhf-color-gold-light);
    transform: translateY(-2px);
}
