/* ========================================
   Hotel Szczęście - Main Stylesheet
   Design Concept: Nordic Elegance
   CSS Framework: Custom (Tailwind-inspired)
======================================== */

/* ========== CSS Variables ========== */
:root {
    /* Primary Colors */
    --snow-white: #FEFEFE;
    --soft-ivory: #F8F9FA;
    --cloud-gray: #E9ECEF;
    
    /* Green Accents */
    --forest-green: #228B22;
    --emerald: #50C878;
    --deep-pine: #1A5D1A;
    --mint-whisper: #E8F5E9;
    
    /* Casino Colors */
    --champagne-gold: #C9A227;
    --soft-gold: #E8D5B7;
    --velvet-black: #1C1C1C;
    
    /* Neutral Colors */
    --charcoal: #2D3436;
    --slate: #636E72;
    --ash: #B2BEC3;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-green: 0 4px 14px rgba(34, 139, 34, 0.25);
    
    /* Transitions */
    --transition-fast: 0.25s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ========== Reset & Base ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--snow-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
}

h1 {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    font-weight: 600;
}

h2 {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    font-weight: 500;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--slate);
}

.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }

/* ========== Container ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-lg {
    max-width: 1400px;
}

/* ========== Header / Navigation ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--forest-green);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--forest-green), var(--emerald));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

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

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--charcoal);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--forest-green);
    transition: width var(--transition-normal);
}

.nav-link:hover, .nav-link.active {
    color: var(--forest-green);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all var(--transition-normal);
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--forest-green);
    color: white;
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    background: var(--deep-pine);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 139, 34, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--forest-green);
    border: 2px solid var(--forest-green);
}

.btn-secondary:hover {
    background: var(--forest-green);
    color: white;
}

.btn-gold {
    background: var(--champagne-gold);
    color: var(--velvet-black);
}

.btn-gold:hover {
    background: #B8920F;
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--forest-green);
}

.btn-white:hover {
    background: var(--mint-whisper);
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ========== Page Hero (Smaller) ========== */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

.page-hero-small {
    min-height: 35vh;
}

/* ========== Sections ========== */
.section {
    padding: 6rem 0;
}

.section-alt {
    background: var(--soft-ivory);
}

.section-dark {
    background: var(--velvet-black);
    color: white;
}

.section-dark h2, .section-dark h3, .section-dark p {
    color: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
}

/* ========== Cards ========== */
.card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-img img {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-text {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--forest-green);
}

.card-price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--slate);
}

/* ========== Grid System ========== */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ========== Features ========== */
.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--mint-whisper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature h3 {
    margin-bottom: 0.75rem;
}

/* ========== Reviews / Testimonials ========== */
.review-card {
    background: var(--soft-ivory);
    border-left: 4px solid var(--emerald);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 2rem;
}

.review-stars {
    color: var(--champagne-gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-author-avatar {
    width: 48px;
    height: 48px;
    background: var(--forest-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.review-author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.review-author-info span {
    font-size: 0.875rem;
    color: var(--slate);
}

/* ========== Reviews Slider ========== */
.reviews-slider {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.reviews-track .review-card {
    flex: 0 0 calc(33.333% - 1.5rem);
    margin: 0 0.75rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid var(--cloud-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-btn:hover {
    border-color: var(--forest-green);
    color: var(--forest-green);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: var(--cloud-gray);
    border-radius: 50%;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.slider-dot.active {
    background: var(--forest-green);
}

/* ========== Casino Section ========== */
.casino-section {
    background: linear-gradient(135deg, var(--velvet-black), #2a2a2a);
    position: relative;
    overflow: hidden;
}

.casino-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A227' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.casino-section .container {
    position: relative;
    z-index: 1;
}

.casino-title {
    font-family: var(--font-accent);
    font-size: 3rem;
    color: var(--champagne-gold);
    text-align: center;
    text-shadow: 0 2px 10px rgba(201, 162, 39, 0.3);
}

.casino-games {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.casino-game {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.casino-game:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--champagne-gold);
}

.casino-game-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.casino-game h3 {
    color: var(--champagne-gold);
    margin-bottom: 0.5rem;
}

.casino-warning {
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--champagne-gold);
    border-radius: var(--radius-sm);
    padding: 1rem 1.5rem;
    text-align: center;
    margin-top: 3rem;
}

.casino-warning span {
    color: var(--champagne-gold);
    font-weight: 600;
}

/* ========== Booking Form ========== */
.booking-bar {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: -60px;
    position: relative;
    z-index: 20;
}

.form-group {
    flex: 1;
    min-width: 150px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate);
    margin-bottom: 0.5rem;
}

.form-input, .form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--soft-ivory);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus {
    border-color: var(--forest-green);
    background: white;
    box-shadow: 0 0 0 4px rgba(34, 139, 34, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* ========== Footer ========== */
.footer {
    background: var(--charcoal);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-brand p {
    color: var(--ash);
    margin-top: 1rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--ash);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--emerald);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--ash);
    font-size: 0.875rem;
    margin: 0;
}

.footer-warning {
    color: var(--champagne-gold);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--forest-green);
}

/* ========== Cookie Popup ========== */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition-slow);
}

.cookie-popup.show {
    transform: translateY(0);
}

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

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    margin-bottom: 0.5rem;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9375rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========== Age Verification Modal ========== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.modal-overlay.show .modal {
    transform: scale(1);
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modal h3 {
    margin-bottom: 1rem;
}

.modal p {
    margin-bottom: 1.5rem;
}

/* ========== Tables ========== */
.table-wrapper {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.table th, .table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--cloud-gray);
}

.table th {
    background: var(--soft-ivory);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table tr:last-child td {
    border-bottom: none;
}

.table tr:hover td {
    background: var(--mint-whisper);
}

/* ========== Utilities ========== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-green { color: var(--forest-green); }
.text-gold { color: var(--champagne-gold); }
.text-slate { color: var(--slate); }

.bg-mint { background: var(--mint-whisper); }
.bg-gold { background: var(--soft-gold); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.hidden { display: none; }
.visible { display: block; }

/* Image mirror for uniqueness */
.img-mirror {
    transform: scaleX(-1);
}

/* ========== Breadcrumbs ========== */
.breadcrumbs {
    padding: 1rem 0;
    background: var(--soft-ivory);
}

.breadcrumbs ul {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--ash);
}

.breadcrumbs a {
    color: var(--slate);
}

.breadcrumbs a:hover {
    color: var(--forest-green);
}

/* ========== Room Amenities ========== */
.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0;
}

.amenity-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: var(--mint-whisper);
    border-radius: 20px;
    font-size: 0.8125rem;
    color: var(--deep-pine);
}

/* ========== Info Boxes ========== */
.info-box {
    background: var(--mint-whisper);
    border-left: 4px solid var(--forest-green);
    padding: 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.5rem 0;
}

.warning-box {
    background: #FEF3CD;
    border-left-color: var(--champagne-gold);
}

.danger-box {
    background: #F8D7DA;
    border-left-color: #DC3545;
}

/* ========== Star Rating ========== */
.star-rating {
    display: inline-flex;
    gap: 0.125rem;
    font-size: 1.25rem;
}

.star-rating .star {
    color: var(--champagne-gold);
}

.star-rating .star.empty {
    color: var(--cloud-gray);
}

/* ========== Summary Box ========== */
.summary-box {
    background: var(--soft-ivory);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.summary-box h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--cloud-gray);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--cloud-gray);
}

/* ========== Check List ========== */
.check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--forest-green);
    font-weight: 700;
}

.warning-list li::before {
    content: '⚠️';
}

/* ========== Gallery ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ========== Animations ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== Mobile Navigation ========== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    padding: 6rem 2rem 2rem;
    transition: right var(--transition-normal);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu .nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.125rem;
    border-bottom: 1px solid var(--cloud-gray);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .casino-games {
        grid-template-columns: 1fr;
    }
    
    .reviews-track .review-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    html { font-size: 15px; }
    
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    
    .header-inner { height: 70px; }
    
    .nav-menu { display: none; }
    
    .mobile-toggle { display: flex; }
    
    .hero { min-height: 80vh; }
    .page-hero { min-height: 40vh; }
    
    .section { padding: 4rem 0; }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .booking-bar {
        flex-direction: column;
        margin-top: -40px;
    }
    
    .booking-bar .form-group {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .reviews-track .review-card {
        flex: 0 0 calc(100% - 1rem);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .table th, .table td {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    
    .btn { width: 100%; }
    
    .hero-content { padding: 1rem; }
    
    .card-body { padding: 1rem; }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Print Styles ========== */
@media print {
    .header, .footer, .cookie-popup, .modal-overlay {
        display: none !important;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
