/* 
   Theme: Niagara Nights Hotel
   Colors: Deep Navy, Gold, White/Silver
   Fonts: Playfair Display (Headings), Inter (Body)
*/

:root {
    --nnh-bg-color: #050b14;
    --nnh-surface-light: #0d1726;
    --nnh-surface-dark: #03070d;
    --nnh-text-primary: #e2e8f0;
    --nnh-text-muted: #94a3b8;
    --nnh-accent-gold: #d4af37;
    --nnh-accent-hover: #facc15;
    --nnh-font-heading: 'Playfair Display', serif;
    --nnh-font-body: 'Inter', sans-serif;
    --nnh-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Header */
.nnh-nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(5, 11, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    z-index: 1000;
}

.nnh-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nnh-nav-logo-wrap {
    display: flex;
    align-items: center;
}

.nnh-nav-abbr {
    font-family: var(--nnh-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--nnh-accent-gold);
    line-height: 1;
}

.nnh-nav-brand-group {
    display: flex;
    flex-direction: column;
}

.nnh-nav-brand {
    font-family: var(--nnh-font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
}

.nnh-nav-subtitle {
    font-size: 0.75rem;
    color: var(--nnh-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nnh-nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nnh-nav-link {
    color: var(--nnh-text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--nnh-transition);
}

.nnh-nav-link:hover {
    color: var(--nnh-accent-gold);
}

.nnh-nav-badge {
    background-color: transparent;
    border: 1px solid var(--nnh-accent-gold);
    color: var(--nnh-accent-gold);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Main */
.nnh-main-wrapper {
    padding-top: 80px;
}

/* Hero Section */
.nnh-hero-stage {
    position: relative;
    padding: 8rem 2rem 6rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(5,11,20,0.7), rgba(5,11,20,1)), url('https://images.unsplash.com/photo-1577717903315-1691ae25ab3f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
}

.nnh-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.nnh-hero-kicker {
    display: inline-block;
    color: var(--nnh-accent-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.nnh-hero-title {
    font-family: var(--nnh-font-heading);
    font-size: 4.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.nnh-hero-desc {
    font-size: 1.1rem;
    color: var(--nnh-text-muted);
    max-width: 700px;
    margin: 0 auto 4rem;
}

.nnh-hero-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nnh-hero-box {
    background-color: rgba(13, 23, 38, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
    transition: var(--nnh-transition);
}

.nnh-hero-box:hover {
    transform: translateY(-5px);
    border-color: var(--nnh-accent-gold);
    background-color: rgba(13, 23, 38, 0.8);
}

.nnh-hero-box-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.nnh-hero-box-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--nnh-text-muted);
    margin-bottom: 0.25rem;
}

.nnh-hero-box-val {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

/* General Sections */
.nnh-wellbeing-area, .nnh-gaming-area {
    padding: 6rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.nnh-section-header {
    margin-bottom: 4rem;
    max-width: 600px;
}

.nnh-section-header.nnh-align-right {
    margin-left: auto;
    text-align: right;
}

.nnh-section-title {
    font-family: var(--nnh-font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.nnh-section-intro {
    color: var(--nnh-text-muted);
    font-size: 1.05rem;
}

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

.nnh-feature-card {
    background-color: var(--nnh-surface-light);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--nnh-transition);
    position: relative;
    overflow: hidden;
}

.nnh-feature-card.nnh-darker {
    background-color: var(--nnh-surface-dark);
}

.nnh-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--nnh-accent-gold), transparent);
    opacity: 0;
    transition: var(--nnh-transition);
}

.nnh-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.nnh-feature-card:hover::before {
    opacity: 1;
}

.nnh-feature-kicker {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--nnh-accent-gold);
    margin-bottom: 1rem;
}

.nnh-feature-cardtitle {
    font-family: var(--nnh-font-heading);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

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

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

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

.nnh-feature-item::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--nnh-accent-gold);
}

/* Footer */
.nnh-bottom-bar {
    background-color: #02050a;
    padding: 5rem 2rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.nnh-bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.nnh-bottom-slogan {
    font-family: var(--nnh-font-heading);
    font-size: 2rem;
    color: var(--nnh-accent-gold);
    text-align: center;
    margin-bottom: 4rem;
}

.nnh-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.nnh-bottom-col-title {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.nnh-bottom-text {
    color: var(--nnh-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.nnh-bottom-help-links {
    display: flex;
    gap: 1rem;
}

.nnh-bottom-link {
    color: var(--nnh-accent-gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.nnh-bottom-link:hover {
    text-decoration: underline;
}

.nnh-bottom-contacts {
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.nnh-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nnh-contact-label {
    font-size: 0.75rem;
    color: var(--nnh-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nnh-contact-val {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

a.nnh-contact-val:hover {
    color: var(--nnh-accent-gold);
}

.nnh-bottom-legal {
    text-align: center;
}

.nnh-affiliate-disc {
    font-size: 0.8rem;
    color: var(--nnh-text-muted);
    margin-bottom: 1.5rem;
}

.nnh-legal-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.nnh-legal-link {
    color: var(--nnh-text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--nnh-transition);
    cursor: pointer;
}

.nnh-legal-link:hover {
    color: #fff;
}

.nnh-copyright {
    font-size: 0.8rem;
    color: #475569;
}

/* Cookie Banner */
.nnh-cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--nnh-surface-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: none;
    max-width: 600px;
}

.nnh-cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nnh-cookie-text {
    font-size: 0.9rem;
    color: var(--nnh-text-muted);
}

.nnh-cookie-actions {
    display: flex;
    justify-content: flex-end;
}

.nnh-cookie-btn {
    background-color: var(--nnh-accent-gold);
    color: #000;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--nnh-transition);
}

.nnh-cookie-btn:hover {
    background-color: var(--nnh-accent-hover);
}

/* Modals */
.nnh-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nnh-modal-overlay.nnh-active {
    display: block;
    opacity: 1;
}

.nnh-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    background-color: var(--nnh-surface-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    z-index: 10001;
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.nnh-modal.nnh-active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%);
}

.nnh-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--nnh-text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.nnh-modal-close:hover {
    color: var(--nnh-accent-gold);
}

.nnh-modal-content {
    padding: 3rem 2.5rem;
}

.nnh-legal-content h1 {
    font-family: var(--nnh-font-heading);
    color: var(--nnh-accent-gold);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.nnh-legal-content h2 {
    font-family: var(--nnh-font-heading);
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}
.nnh-legal-content p, .nnh-legal-content ul {
    color: var(--nnh-text-muted);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}
.nnh-legal-content ul {
    padding-left: 2rem;
}
.nnh-legal-content li {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .nnh-feature-grid, .nnh-bottom-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nnh-nav-actions {
        display: none;
    }
    .nnh-hero-title {
        font-size: 3rem;
    }
    .nnh-feature-grid, .nnh-bottom-grid {
        grid-template-columns: 1fr;
    }
    .nnh-bottom-contacts {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .nnh-modal-content {
        padding: 2rem 1.5rem;
    }
}
