/* =================================
   KÁZINÓ PART — DANUBE GRAND AESTHETIC
   ================================= */

/* CSS Variables — Design Tokens */
:root {
    --primary-dark: #1a2a4a;
    --secondary-gold: #d4a574;
    --accent-burgundy: #6b2d5c;
    --accent-plum: #4a3f5c;
    --bg-light: #f9f7f4;
    --text-dark: #2c2c2c;
    --text-light: #f9f7f4;
    --border-gold: #d4a574;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.3);

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-elegant: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* =================================
   NAVIGATION
   ================================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--bg-light);
    border-bottom: 2px solid var(--secondary-gold);
    padding: 1.5rem 0;
    backdrop-filter: blur(10px);
    background-color: rgba(249, 247, 244, 0.95);
}

.navbar-dark {
    background-color: rgba(26, 42, 74, 0.95);
    border-bottom-color: var(--secondary-gold);
}

.navbar-dark .navbar-brand {
    color: var(--text-light);
}

.navbar-dark .navbar-menu a {
    color: var(--text-light);
}

.navbar-dark .navbar-menu a:hover {
    color: var(--secondary-gold);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-dark);
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.navbar-menu a {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    transition: color 0.3s ease;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-gold);
    transition: width 0.3s ease;
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    width: 100%;
}

/* =================================
   HERO SECTION — Asymmetrical Editorial
   ================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a3e5f 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 3rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    padding: 2rem;
    color: var(--text-light);
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--secondary-gold);
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-gold);
    color: var(--primary-dark);
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #e8c5a5;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 30px 80px var(--shadow-dark),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.95) contrast(1.05);
    transition: all 0.6s ease;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, transparent 50%, rgba(212, 165, 116, 0.05) 100%);
    pointer-events: none;
}

.hero-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--secondary-gold) 0%, transparent 70%);
    opacity: 0.15;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        padding: 1rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
}

/* =================================
   STORY SECTION — Layout Asymmetry
   ================================= */

.story {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.story-text p {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.story-image {
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 20px 60px var(--shadow-light),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.15);
    position: relative;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(0.98) contrast(1.03);
    transition: all 0.6s ease;
}

.story-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(212, 165, 116, 0.05) 0%, transparent 50%, rgba(212, 165, 116, 0.1) 100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .story-container {
        grid-template-columns: 1fr;
    }

    .story-image img {
        height: 350px;
    }
}

/* =================================
   CUISINE SECTION — Editorial Grid
   ================================= */

.cuisine {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--bg-light) 0%, #fdfbf8 100%);
}

.cuisine-header {
    max-width: 1400px;
    margin: 0 auto 3rem;
    text-align: left;
}

.cuisine-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.cuisine-header p {
    font-family: var(--font-elegant);
    font-size: 1.3rem;
    color: var(--secondary-gold);
}

.cuisine-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.cuisine-card {
    position: relative;
    overflow: hidden;
    background: white;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    border-radius: 2px;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.cuisine-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(212, 165, 116, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.cuisine-card img {
    filter: brightness(1) contrast(1.05);
    transition: filter 0.6s ease;
}

.cuisine-card:hover img {
    filter: brightness(1.05) contrast(1.1);
}

.cuisine-card.large {
    grid-row: span 2;
}

.cuisine-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.cuisine-card.large img {
    min-height: 600px;
}

.cuisine-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.cuisine-text h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.cuisine-text p {
    font-family: var(--font-elegant);
    font-size: 1rem;
    color: var(--secondary-gold);
}

@media (max-width: 768px) {
    .cuisine-grid {
        grid-template-columns: 1fr;
    }

    .cuisine-card.large {
        grid-row: auto;
    }
}

/* =================================
   AMBIANCE SECTION — Layered Layout
   ================================= */

.ambiance {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.ambiance-left {
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 25px 70px var(--shadow-light),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.15);
    position: relative;
}

.ambiance-left img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(0.98) contrast(1.05) saturate(1.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.ambiance-left::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, transparent 50%, rgba(212, 165, 116, 0.12) 100%);
    pointer-events: none;
}

.ambiance-right h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.ambiance-right p {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.ambiance-features {
    list-style: none;
    margin-top: 2rem;
}

.ambiance-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    color: var(--text-dark);
}

.ambiance-features li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--secondary-gold);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .ambiance {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* =================================
   TRANSITION SECTION
   ================================= */

.transition {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a3a5a 50%, var(--accent-burgundy) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 30px rgba(212, 165, 116, 0.1);
}

.transition::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary-gold) 0%, transparent 70%);
    opacity: 0.12;
    border-radius: 50%;
    animation: floatSoft 6s ease-in-out infinite;
}

.transition::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary-gold) 0%, transparent 70%);
    opacity: 0.08;
    border-radius: 50%;
    animation: floatSoft 8s ease-in-out infinite reverse;
}

.transition-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.transition-content h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.transition-content p {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.transition-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-gold);
    color: var(--primary-dark);
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.transition-cta:hover {
    background-color: #e8c5a5;
    transform: translateY(-3px);
}

.transition img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 2px;
    filter: brightness(1) contrast(1.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.transition img:hover {
    filter: brightness(1.1) contrast(1.15);
    transform: scale(1.01);
}

@media (max-width: 768px) {
    .transition-content {
        grid-template-columns: 1fr;
    }
}

/* =================================
   CASINO PAGE SPECIFIC
   ================================= */

.casino-page {
    background-color: var(--primary-dark);
}

.casino-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.casino-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.casino-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 42, 74, 0.6);
    z-index: 2;
}

.casino-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 2rem;
}

.casino-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.casino-hero-content p {
    font-family: var(--font-elegant);
    font-size: 1.4rem;
    color: var(--secondary-gold);
    max-width: 600px;
    margin: 0 auto;
}

/* Games Section */
.games {
    padding: 6rem 2rem;
    background-color: var(--primary-dark);
}

.games-header {
    max-width: 1400px;
    margin: 0 auto 3rem;
    text-align: left;
}

.games-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.games-header p {
    font-family: var(--font-elegant);
    font-size: 1.3rem;
    color: var(--secondary-gold);
}

.games-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.game-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(74, 63, 92, 0.6) 0%, rgba(107, 45, 92, 0.4) 100%);
    border: 1.5px solid var(--secondary-gold);
    border-radius: 2px;
    text-align: center;
    color: white;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.2), transparent);
    transition: left 0.6s ease;
}

.game-card:hover {
    background: linear-gradient(135deg, rgba(74, 63, 92, 0.9) 0%, rgba(107, 45, 92, 0.7) 100%);
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(212, 165, 116, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.game-card:hover::before {
    left: 100%;
}

.game-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-gold);
}

.game-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.game-card p {
    font-family: var(--font-elegant);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.game-detail {
    color: var(--secondary-gold);
    font-weight: 600;
    margin-top: 1rem;
}

/* Casino Atmosphere Section */
.casino-atmosphere {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--accent-plum) 100%);
}

.atmosphere-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.atmosphere-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.atmosphere-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    filter: brightness(1.05) contrast(1.1) saturate(1.15);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.atmosphere-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, transparent 50%, rgba(212, 165, 116, 0.15) 100%);
    pointer-events: none;
}

.atmosphere-text h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1.5rem;
}

.atmosphere-text p {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.atmosphere-features {
    list-style: none;
    margin-top: 2rem;
}

.atmosphere-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.atmosphere-features li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--secondary-gold);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .atmosphere-grid {
        grid-template-columns: 1fr;
    }
}

/* House Rules */
.house-rules {
    padding: 6rem 2rem;
    background-color: var(--primary-dark);
    color: white;
}

.house-rules h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
}

.rules-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.rule-item {
    padding: 2rem;
    background: rgba(212, 165, 116, 0.1);
    border-left: 3px solid var(--secondary-gold);
}

.rule-item h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-gold);
}

.rule-item p {
    font-family: var(--font-elegant);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Casino CTA Section */
.casino-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--accent-burgundy) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-button-dark {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-gold);
    color: var(--primary-dark);
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.cta-button-dark:hover {
    background-color: #e8c5a5;
    transform: translateY(-3px);
}

/* =================================
   CONTACT PAGE
   ================================= */

.contact-hero {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a3e5f 100%);
    color: white;
    text-align: center;
}

.contact-hero-content h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-family: var(--font-elegant);
    font-size: 1.3rem;
    color: var(--secondary-gold);
}

.contact-main {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.info-block {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--secondary-gold);
}

.info-block h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.info-block p {
    font-family: var(--font-elegant);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.contact-experience h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.experience-block {
    margin-bottom: 2.5rem;
}

.experience-block h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.experience-block p {
    font-family: var(--font-elegant);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.services-list {
    list-style: none;
    margin-top: 1rem;
}

.services-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-family: var(--font-elegant);
    font-size: 1rem;
    color: var(--text-dark);
}

.services-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-gold);
    font-weight: bold;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Hospitality Charter */
.hospitality-charter {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--accent-plum) 100%);
    color: white;
}

.charter-content {
    max-width: 1400px;
    margin: 0 auto;
}

.charter-content h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.charter-content > p {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.charter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.charter-item {
    padding: 2rem;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid var(--secondary-gold);
}

.charter-item h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--secondary-gold);
    margin-bottom: 1rem;
}

.charter-item p {
    font-family: var(--font-elegant);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Form */
.contact-form-section {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-container h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.contact-form-container > p {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: grid;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-elegant);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    border: 1px solid var(--secondary-gold);
    background-color: white;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-button {
    padding: 1rem 2rem;
    background-color: var(--primary-dark);
    color: white;
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.form-button:hover {
    background-color: var(--accent-burgundy);
    transform: translateY(-2px);
}

/* =================================
   FOOTER
   ================================= */

.footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--secondary-gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-section p {
    font-family: var(--font-elegant);
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section a {
    display: block;
    font-family: var(--font-elegant);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-gold);
}

.footer-divider {
    max-width: 1400px;
    margin: 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-gold), transparent);
    margin-bottom: 2rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.3);
}

.footer-bottom p {
    font-family: var(--font-elegant);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* =================================
   RESPONSIVE ADJUSTMENTS
   ================================= */

@media (max-width: 768px) {
    .navbar-menu {
        gap: 1.5rem;
    }

    .navbar-menu a {
        font-size: 1rem;
    }

    .games-grid,
    .charter-grid,
    .rules-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

    .navbar-menu {
        gap: 1rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .story-text h2,
    .cuisine-header h2,
    .ambiance-right h2,
    .transition-content h2 {
        font-size: 2rem;
    }
}

/* =================================
   ANIMATIONS & TRANSITIONS
   ================================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 10px 30px var(--shadow-light);
    }
    50% {
        box-shadow: 0 15px 50px rgba(212, 165, 116, 0.15);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes floatSoft {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.hero-text {
    animation: slideInLeft 1s cubic-bezier(0.23, 1, 0.320, 1);
}

.hero-image {
    animation: slideInRight 1s cubic-bezier(0.23, 1, 0.320, 1);
}

.story-text {
    animation: fadeInUp 0.9s ease-out 0.2s both;
}

.story-image {
    animation: scaleIn 0.9s ease-out 0.3s both;
}

.cuisine-header {
    animation: fadeInUp 0.8s ease-out;
}

.cuisine-card {
    animation: fadeInUp 0.8s ease-out;
}

.cuisine-card:nth-child(2) {
    animation-delay: 0.1s;
}

.cuisine-card:nth-child(3) {
    animation-delay: 0.2s;
}

.game-card {
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.game-card:nth-child(1) {
    animation-delay: 0.1s;
}

.game-card:nth-child(2) {
    animation-delay: 0.2s;
}

.game-card:nth-child(3) {
    animation-delay: 0.3s;
}

.game-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Enhanced hover effects */
.cta-button,
.cta-button-dark {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.cta-button::before,
.cta-button-dark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before,
.cta-button-dark:hover::before {
    width: 300px;
    height: 300px;
}

/* Image hover lift effect */
.hero-image,
.story-image,
.atmosphere-item img {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.hero-image:hover,
.story-image:hover {
    transform: translateY(-5px);
}

.atmosphere-item img:hover {
    transform: scale(1.02);
}

/* Card sophisticated shadows */
.cuisine-card,
.game-card,
.charter-item,
.rule-item {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.cuisine-card:hover,
.game-card:hover,
.charter-item:hover,
.rule-item:hover {
    box-shadow: 0 20px 60px rgba(212, 165, 116, 0.2);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Text selection color */
::selection {
    background-color: var(--secondary-gold);
    color: var(--primary-dark);
}

/* Subtle background animations */
@media (prefers-reduced-motion: no-preference) {
    .navbar {
        transition: all 0.3s ease;
    }

    body {
        background-attachment: fixed;
    }
}

/* Enhanced link hover effects */
.navbar-menu a {
    position: relative;
    display: inline-block;
}

.navbar-menu a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.navbar-menu a:hover::before,
.navbar-menu a.active::before {
    transform: scaleX(1);
}

/* Text gradient for premium headings */
.hero-text h1,
.transition-content h2,
.casino-hero-content h1,
.casino-atmosphere-text h2 {
    background: linear-gradient(135deg, #f9f7f4 0%, #d4a574 50%, #f9f7f4 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Premium form styling */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--secondary-gold);
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.15);
    background-color: rgba(212, 165, 116, 0.02);
}

/* Enhanced footer interactivity */
.footer-section a:hover {
    padding-left: 5px;
    transition: all 0.3s ease;
}

/* Smooth color transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease;
}
