/* =============================================
   LUCKY'S GAMING & SPIRITS — STYLE SHEET
   Palette: Teal (#0d9488) + Slate (#1e293b)
   ============================================= */

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

:root {
  --teal:        #0d9488;
  --teal-dark:   #0f766e;
  --teal-light:  #14b8a6;
  --teal-50:     #f0fdfa;
  --teal-100:    #ccfbf1;
  --slate-50:    #f8fafc;
  --slate-100:   #f1f5f9;
  --slate-200:   #e2e8f0;
  --slate-300:   #cbd5e1;
  --slate-400:   #94a3b8;
  --slate-500:   #64748b;
  --slate-600:   #475569;
  --slate-700:   #334155;
  --slate-800:   #1e293b;
  --slate-900:   #0f172a;
  --white:       #ffffff;
  --font-body:   'Inter', system-ui, -apple-system, sans-serif;
  --font-display:'Playfair Display', Georgia, serif;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --radius:      12px;
  --radius-lg:   20px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--teal); color: var(--white);
  padding: 8px 16px; border-radius: var(--radius);
  z-index: 9999; font-weight: 600;
}
.skip-link:focus { top: 16px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--teal); border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15;
  color: var(--slate-900); margin-bottom: 20px;
}
.text-teal { color: var(--teal); }
.section-desc {
  font-size: 1.1rem; color: var(--slate-500);
  max-width: 560px; line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--teal); color: var(--white);
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3);
}
.btn--primary:hover {
  background: var(--teal-dark); color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13, 148, 136, 0.4);
}
.btn--ghost {
  background: rgba(255,255,255,0.1); color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.2); color: var(--white);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* ── Navigation ────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  height: 72px; gap: 32px;
}
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-weight: 700;
  font-size: 1rem; text-decoration: none;
}
.nav__logo { width: 36px; height: 36px; color: var(--teal-light); }
.nav__name { font-family: var(--font-display); font-size: 1.1rem; }
.nav__list { display: flex; gap: 8px; margin-left: auto; }
.nav__link {
  color: rgba(255,255,255,0.75); font-size: 0.9rem;
  font-weight: 500; padding: 8px 16px; border-radius: 50px;
  transition: all 0.2s var(--ease);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav__link--cta {
  background: var(--teal); color: var(--white) !important;
  margin-left: 8px;
}
.nav__link--cta:hover { background: var(--teal-dark); }

.nav__toggle {
  display: none; color: var(--white);
  width: 40px; height: 40px; align-items: center; justify-content: center;
  border-radius: 8px; transition: background 0.2s;
}
.nav__toggle:hover { background: rgba(255,255,255,0.1); }
.nav__icon { width: 22px; height: 22px; transition: opacity 0.2s; }
.nav__icon--close { position: absolute; opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__icon:first-child { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__icon--close { opacity: 1; }

/* ── Hero ──────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('https://images.pexels.com/photos/15105621/pexels-photo-15105621.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero.loaded .hero__bg { transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(15, 23, 42, 0.70) 50%,
    rgba(13, 148, 136, 0.40) 100%
  );
}
.hero__content {
  position: relative; z-index: 1;
  max-width: 780px; padding: 120px 24px 80px;
  text-align: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13, 148, 136, 0.2); border: 1px solid rgba(13, 148, 136, 0.4);
  color: var(--teal-light); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 20px; border-radius: 50px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.hero__badge svg { width: 14px; height: 14px; }
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800; line-height: 1.1;
  color: var(--white); margin-bottom: 24px;
}
.hero__accent {
  color: var(--teal-light);
  font-style: italic;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.7); line-height: 1.7;
  max-width: 580px; margin: 0 auto 40px;
}
.hero__actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__stats {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.hero__stat { text-align: center; }
.hero__stat-num {
  display: block; font-family: var(--font-display);
  font-size: 2rem; font-weight: 700; color: var(--white);
}
.hero__stat-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.hero__stat-divider {
  width: 1px; background: rgba(255,255,255,0.15);
  align-self: stretch; margin: 8px 0;
}
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); color: rgba(255,255,255,0.4);
  animation: bounce 2s infinite;
}
.hero__scroll svg { width: 24px; height: 24px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Sections ──────────────────────────────── */
.section { padding: 100px 0; }
.section--dark { background: var(--slate-900); }
.section--alt { background: var(--slate-50); }

/* ── About ─────────────────────────────────── */
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about__media { position: relative; }
.about__img-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}
.about__img-main img { width: 100%; height: 470px; object-fit: cover; }
.about__img-accent {
  position: absolute; bottom: -32px; right: -24px;
  width: 200px; height: 200px; border-radius: var(--radius);
  overflow: hidden; border: 4px solid var(--white);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.about__img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about__text p {
  color: var(--slate-600); font-size: 1.05rem;
  line-height: 1.8; margin-bottom: 16px;
}
.about__features {
  display: flex; flex-direction: column; gap: 24px;
  margin-top: 40px;
}
.feature {
  display: flex; gap: 16px; align-items: flex-start;
}
.feature__icon {
  flex-shrink: 0; width: 48px; height: 48px;
  background: var(--teal-50); border: 1px solid var(--teal-100);
  border-radius: var(--radius); display: flex;
  align-items: center; justify-content: center;
  color: var(--teal);
}
.feature__icon svg { width: 22px; height: 22px; }
.feature__title {
  font-size: 1rem; font-weight: 700;
  color: var(--slate-800); margin-bottom: 4px;
}
.feature__desc { font-size: 0.9rem; color: var(--slate-500); line-height: 1.6; }

/* ── Experience Cards ──────────────────────── */
.experience__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid var(--slate-100);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.card__img { height: 240px; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.card:hover .card__img img { transform: scale(1.05); }
.card__body { padding: 32px; }
.card__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: var(--radius); display: flex;
  align-items: center; justify-content: center;
  color: var(--white); margin-bottom: 20px;
}
.card__icon svg { width: 24px; height: 24px; }
.card__title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--slate-900); margin-bottom: 12px;
}
.card__desc {
  color: var(--slate-500); font-size: 0.95rem;
  line-height: 1.7; margin-bottom: 20px;
}
.card__list { display: flex; flex-direction: column; gap: 10px; }
.card__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--slate-700);
}
.card__list svg { width: 14px; height: 14px; color: var(--teal); flex-shrink: 0; }

/* ── Drinks ────────────────────────────────── */
.drinks { background: var(--slate-900); padding: 100px 0; }
.drinks__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.drinks__text .section-title { color: var(--white); }
.drinks__text .section-desc { color: var(--slate-400); }
.drinks__desc {
  color: var(--slate-400); font-size: 1.05rem;
  line-height: 1.8; margin-bottom: 40px;
}
.drinks__highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 32px;
}
.highlight {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 20px;
  transition: background 0.2s, border-color 0.2s;
}
.highlight:hover {
  background: rgba(13, 148, 136, 0.1);
  border-color: rgba(13, 148, 136, 0.3);
}
.highlight__label {
  display: block; font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--teal-light); margin-bottom: 6px;
}
.highlight__name {
  display: block; font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
}
.highlight__note { font-size: 0.8rem; color: var(--slate-500); }
.drinks__cta {
  font-size: 0.9rem; color: var(--slate-500);
  font-style: italic;
}
.drinks__visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.drinks__col img {
  width: 100%; height: 260px; object-fit: cover;
  border-radius: var(--radius);
}
.drinks__col img:first-child { margin-top: 40px; }

/* ── Visit ─────────────────────────────────── */
.visit__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.visit__details {
  display: flex; flex-direction: column; gap: 24px;
  margin: 32px 0;
}
.detail {
  display: flex; gap: 16px; align-items: flex-start;
}
.detail__icon {
  flex-shrink: 0; width: 48px; height: 48px;
  background: var(--teal-50); border: 1px solid var(--teal-100);
  border-radius: var(--radius); display: flex;
  align-items: center; justify-content: center;
  color: var(--teal);
}
.detail__icon svg { width: 20px; height: 20px; }
.detail__label {
  display: block; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--slate-400); margin-bottom: 4px;
}
.detail__value {
  display: block; font-size: 1rem; color: var(--slate-800);
  font-weight: 500; line-height: 1.6;
}
.detail__link { color: var(--teal); }
.detail__link:hover { color: var(--teal-dark); }
.visit__hours {
  background: var(--slate-50); border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg); padding: 28px 32px;
}
.hours-row {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--slate-100);
}
.hours-row:last-of-type { border-bottom: none; }
.hours-day { font-weight: 600; color: var(--slate-700); font-size: 0.95rem; }
.hours-time { color: var(--slate-500); font-size: 0.95rem; }
.hours-note {
  margin-top: 16px; font-size: 0.8rem; color: var(--slate-400);
  font-style: italic;
}
.visit__map {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  min-height: 480px;
}

/* ── Contact ───────────────────────────────── */
.contact { background: var(--slate-50); }
.contact__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.contact__desc {
  color: var(--slate-500); font-size: 1.05rem;
  line-height: 1.7; margin-top: 16px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { margin-bottom: 20px; }
.form__label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--slate-700); margin-bottom: 8px;
}
.form__input {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--slate-200); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--slate-800); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form__input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}
.form__input::placeholder { color: var(--slate-400); }
.form__select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px;
}
.form__textarea { resize: vertical; min-height: 120px; }
.form__success {
  display: none; align-items: center; gap: 12px;
  margin-top: 16px; padding: 16px 20px;
  background: var(--teal-50); border: 1px solid var(--teal-100);
  border-radius: var(--radius); color: var(--teal-dark);
  font-weight: 500; font-size: 0.95rem;
}
.form__success svg { width: 20px; height: 20px; flex-shrink: 0; }
.form__success.show { display: flex; }

/* ── Footer ────────────────────────────────── */
.footer {
  background: var(--slate-900); color: var(--slate-400);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-weight: 700;
  font-size: 1.05rem; margin-bottom: 16px;
}
.footer__logo-icon { width: 36px; height: 36px; color: var(--teal-light); }
.footer__tagline { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer__heading {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--white);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a {
  color: var(--slate-400); font-size: 0.9rem;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--teal-light); }
.footer__info { display: flex; flex-direction: column; gap: 16px; }
.footer__info li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.9rem; line-height: 1.6;
}
.footer__info svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer__info a { color: var(--slate-400); }
.footer__info a:hover { color: var(--teal-light); }
.footer__hours { display: flex; flex-direction: column; gap: 10px; }
.footer__hours li {
  display: flex; justify-content: space-between;
  font-size: 0.9rem; gap: 16px;
}
.footer__hours li span:first-child { color: var(--slate-300); }
.footer__bottom {
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 0.85rem;
}
.footer__bottom a { color: var(--teal); }
.footer__bottom a:hover { color: var(--teal-light); }

/* ── Mobile Menu ───────────────────────────── */
@media (max-width: 768px) {
  .nav__toggle { display: flex; position: relative; z-index: 1001; }
  .nav__menu {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s var(--ease);
  }
  .nav__menu.open { opacity: 1; pointer-events: all; }
  .nav__list {
    flex-direction: column; align-items: center; gap: 8px;
  }
  .nav__link { font-size: 1.2rem; padding: 12px 24px; }
  .nav__link--cta { margin-left: 0; margin-top: 16px; }

  .hero__content { padding: 100px 20px 60px; }
  .hero__stats { gap: 24px; }
  .hero__stat-divider { display: none; }

  .about__grid,
  .experience__grid,
  .drinks__inner,
  .visit__grid,
  .contact__inner {
    grid-template-columns: 1fr; gap: 40px;
  }
  .about__img-accent { display: none; }
  .about__img-main img { height: 350px; }
  .drinks__highlights { grid-template-columns: 1fr; }
  .drinks__col img { height: 200px; }
  .drinks__col img:first-child { margin-top: 0; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
}

/* ── Animations ────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
