/* ============================================
   HOLDFÉNY KASZINÓ — Moonlight Hall Stylesheet
   ============================================ */

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

:root {
    /* Moonlight palette */
    --navy-deepest:   #07101f;
    --navy-deep:      #0d1b2e;
    --navy-mid:       #13253d;
    --navy-surface:   #1c3352;
    --blue-mist:      #2a4a6e;
    --silver-mid:     #7899b8;
    --silver-light:   #a8c0d6;
    --silver-bright:  #cddaeb;
    --moonwhite:      #e8f0f8;
    --pure-white:     #f6f9fc;
    --accent-silver:  #b0c8e0;
    --accent-pale:    #dce8f4;

    /* Typography */
    --font-serif: 'Georgia', 'Times New Roman', serif;
    --font-sans:  system-ui, -apple-system, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-gap: 100px;
    --max-width: 1180px;
    --gutter: 48px;
}

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

body {
    font-family: var(--font-serif);
    background-color: var(--navy-deepest);
    color: var(--moonwhite);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--accent-silver);
    text-decoration: none;
    transition: color 0.25s;
}

a:hover {
    color: var(--pure-white);
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(7, 16, 31, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(168, 192, 214, 0.12);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    gap: 2px;
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--silver-bright);
    text-transform: uppercase;
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 2.5px;
    color: var(--silver-mid);
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--silver-light);
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    transition: color 0.25s, border-color 0.25s;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--moonwhite);
    border-bottom-color: var(--silver-bright);
}

/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.42) saturate(0.7) hue-rotate(10deg);
}

.hero-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(7, 16, 31, 0.15) 0%,
        rgba(7, 16, 31, 0.45) 60%,
        rgba(7, 16, 31, 0.85) 100%
    );
}

.hero-body {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    padding: 0 var(--gutter);
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--silver-mid);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--moonwhite);
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 18px;
    font-weight: 300;
    color: var(--silver-light);
    letter-spacing: 0.5px;
    margin-bottom: 40px;
}

.hero--casino .hero-img,
.hero--contact .hero-img {
    object-position: center 40%;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
    display: inline-block;
    padding: 14px 40px;
    background-color: var(--silver-bright);
    color: var(--navy-deepest);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.25s, box-shadow 0.25s;
}

.btn-primary:hover {
    background-color: var(--pure-white);
    color: var(--navy-deepest);
    box-shadow: 0 8px 32px rgba(168, 192, 214, 0.3);
}

.btn-outline {
    display: inline-block;
    padding: 14px 40px;
    background-color: transparent;
    color: var(--moonwhite);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(200, 218, 235, 0.5);
    cursor: pointer;
    transition: background-color 0.25s, border-color 0.25s, color 0.25s;
}

.btn-outline:hover {
    background-color: rgba(200, 218, 235, 0.12);
    border-color: var(--silver-bright);
    color: var(--pure-white);
}

/* ============================================
   SECTIONS
   ============================================ */

.section-wide {
    padding: var(--section-gap) var(--gutter);
    max-width: calc(var(--max-width) + var(--gutter) * 2);
    margin: 0 auto;
    width: 100%;
}

/* Philosophy / text intro */
.philosophy {
    padding-top: 90px;
    padding-bottom: 80px;
}

/* ============================================
   EYEBROW / TEXT BLOCK
   ============================================ */

.eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--silver-mid);
    margin-bottom: 18px;
}

.text-block {
    max-width: 680px;
}

.text-block.text-center {
    margin: 0 auto;
    text-align: center;
}

.text-block h2 {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--moonwhite);
    line-height: 1.2;
    margin-bottom: 24px;
}

.text-block p {
    font-size: 16px;
    color: var(--silver-light);
    line-height: 1.9;
    max-width: 620px;
    margin: 0 auto;
}

/* ============================================
   CARDS GRID
   ============================================ */

.cards-section {
    padding-top: 0;
    padding-bottom: var(--section-gap);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    background-color: var(--navy-mid);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.card-img-wrap {
    height: 260px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65) saturate(0.75);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.card:hover .card-img {
    filter: brightness(0.75) saturate(0.9);
    transform: scale(1.04);
}

.card-body {
    padding: 32px 28px 36px;
}

.card-body h3 {
    font-family: var(--font-serif);
    font-size: 21px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--silver-bright);
    margin-bottom: 12px;
}

.card-body p {
    font-size: 14px;
    line-height: 1.85;
    color: var(--silver-mid);
}

/* ============================================
   TWO-COLUMN LAYOUT
   ============================================ */

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.col-text .eyebrow {
    margin-bottom: 16px;
}

.col-text h2 {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--moonwhite);
    line-height: 1.2;
    margin-bottom: 30px;
}

.col-img {
    height: 520px;
    overflow: hidden;
}

.fill-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65) saturate(0.75);
    transition: filter 0.4s ease;
}

.col-img:hover .fill-img {
    filter: brightness(0.75) saturate(0.88);
}

/* ============================================
   DISH LIST
   ============================================ */

.dish-list {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dish-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(168, 192, 214, 0.1);
}

.dish-list li:last-child {
    border-bottom: none;
}

.dish-name {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--moonwhite);
    letter-spacing: 0.3px;
}

.dish-note {
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--silver-mid);
    letter-spacing: 0.5px;
}

/* ============================================
   FEATURE LIST
   ============================================ */

.feature-list {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    font-size: 15px;
    color: var(--silver-light);
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--silver-mid);
}

/* ============================================
   WINE SECTION
   ============================================ */

.wine-section {
    background-color: var(--navy-mid);
    padding: var(--section-gap) var(--gutter);
    max-width: 100%;
}

.wine-section .text-block.text-center {
    max-width: 720px;
}

/* ============================================
   CTA STRIP
   ============================================ */

.cta-strip {
    padding: 80px var(--gutter);
    background: linear-gradient(135deg, var(--navy-surface) 0%, var(--navy-mid) 100%);
    border-top: 1px solid rgba(168, 192, 214, 0.08);
    border-bottom: 1px solid rgba(168, 192, 214, 0.08);
}

.cta-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-inner h2 {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--moonwhite);
}

/* ============================================
   ETIQUETTE SECTION
   ============================================ */

.etiquette-section {
    background-color: var(--navy-mid);
    max-width: 100%;
    padding: var(--section-gap) var(--gutter);
}

.etiquette-section .text-block {
    margin-bottom: 60px;
}

.etiquette-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.etiq-item {
    padding: 32px 24px;
    border-top: 1px solid rgba(168, 192, 214, 0.15);
}

.etiq-item h4 {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--silver-bright);
    margin-bottom: 14px;
}

.etiq-item p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--silver-mid);
}

/* ============================================
   CONTACT INFO
   ============================================ */

.contact-info-section {
    padding-top: 90px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 44px 36px;
    background-color: var(--navy-mid);
    border: 1px solid rgba(168, 192, 214, 0.08);
    transition: border-color 0.3s;
}

.info-block:hover {
    border-color: rgba(168, 192, 214, 0.22);
}

.info-block h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--silver-bright);
    letter-spacing: 0.5px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(168, 192, 214, 0.12);
}

.info-block p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--silver-light);
}

.info-block strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--silver-mid);
    margin-bottom: 4px;
}

.info-block a {
    color: var(--accent-silver);
}

.info-block a:hover {
    color: var(--moonwhite);
}

/* ============================================
   FORM SECTION
   ============================================ */

.form-section {
    padding-top: 80px;
    padding-bottom: var(--section-gap);
}

.form-wrap {
    max-width: 820px;
}

.form-header {
    margin-bottom: 48px;
}

.form-header h2 {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 300;
    color: var(--moonwhite);
    margin-bottom: 14px;
}

.form-header p {
    font-size: 15px;
    color: var(--silver-light);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.field-row {
    display: flex;
    gap: 24px;
}

.field-row.two-up .field {
    flex: 1;
}

.field-row.three-up .field {
    flex: 1;
}

.field-row:not(.two-up):not(.three-up) .field {
    flex: 1;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field label {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--silver-mid);
}

.field label span {
    color: var(--accent-silver);
}

.field input,
.field select,
.field textarea {
    background-color: var(--navy-mid);
    border: 1px solid rgba(168, 192, 214, 0.15);
    color: var(--moonwhite);
    font-family: var(--font-serif);
    font-size: 15px;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.25s, background-color 0.25s;
    -webkit-appearance: none;
    appearance: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--accent-silver);
    background-color: var(--navy-surface);
}

.field select option {
    background-color: var(--navy-mid);
}

.field textarea {
    resize: vertical;
    min-height: 110px;
}

.field--check {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.field--check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--accent-silver);
}

.field--check label {
    font-family: var(--font-serif);
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
    color: var(--silver-light);
    cursor: pointer;
}

.form-footer {
    padding-top: 8px;
}

/* ============================================
   OCCASIONS SECTION
   ============================================ */

.occasions-section {
    background-color: var(--navy-mid);
    max-width: 100%;
    padding: var(--section-gap) var(--gutter);
}

.occasions-section .text-block {
    margin-bottom: 60px;
}

.occasions-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.occasion-item {
    padding: 36px 28px;
    border: 1px solid rgba(168, 192, 214, 0.1);
    background-color: var(--navy-surface);
    transition: border-color 0.3s ease;
}

.occasion-item:hover {
    border-color: rgba(168, 192, 214, 0.25);
}

.occasion-item h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--silver-bright);
    margin-bottom: 12px;
}

.occasion-item p {
    font-size: 14px;
    color: var(--silver-mid);
    line-height: 1.8;
}

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

.site-footer {
    background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-deepest) 100%);
    border-top: 1px solid rgba(168, 192, 214, 0.1);
    margin-top: 0;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 72px var(--gutter) 56px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid rgba(168, 192, 214, 0.07);
}

.footer-logo {
    display: block;
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--silver-bright);
    margin-bottom: 10px;
}

.footer-col p {
    font-size: 13px;
    color: var(--silver-mid);
    line-height: 1.9;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--silver-light);
    margin-bottom: 16px;
}

.footer-col a {
    color: var(--silver-mid);
}

.footer-col a:hover {
    color: var(--moonwhite);
}

.footer-bar {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bar p {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.8px;
    color: var(--blue-mist);
}

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

.footer-nav a {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-mist);
    transition: color 0.25s;
}

.footer-nav a:hover {
    color: var(--silver-light);
}

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

@media (max-width: 1024px) {
    :root {
        --gutter: 32px;
        --section-gap: 72px;
    }

    .hero-title { font-size: 56px; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .etiquette-grid { grid-template-columns: repeat(2, 1fr); }
    .two-col { gap: 48px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root {
        --gutter: 24px;
        --section-gap: 56px;
    }

    .hero { height: 520px; }
    .hero-title { font-size: 42px; letter-spacing: 3px; }
    .hero-lead { font-size: 16px; }

    .site-nav { gap: 20px; }
    .logo-main { font-size: 18px; }

    .cards-grid { grid-template-columns: 1fr; gap: 20px; }
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .reverse-on-mobile .col-img { order: -1; }
    .col-img { height: 340px; }

    .contact-info-grid { grid-template-columns: 1fr; }
    .occasions-grid { grid-template-columns: 1fr; }
    .etiquette-grid { grid-template-columns: 1fr 1fr; }

    .field-row { flex-direction: column; }
    .field-row.two-up,
    .field-row.three-up { flex-direction: column; }

    .cta-inner { flex-direction: column; text-align: center; }
    .cta-inner h2 { font-size: 24px; }

    .footer-inner { grid-template-columns: 1fr; padding-bottom: 40px; }
    .footer-bar { flex-direction: column; gap: 16px; text-align: center; }

    .text-block h2 { font-size: 30px; }
}

@media (max-width: 480px) {
    .hero { height: 440px; }
    .hero-title { font-size: 34px; }
    .etiquette-grid { grid-template-columns: 1fr; }
    .logo-sub { display: none; }
}
