* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #0b0b0f;
  color: #ffffff;
  line-height: 1.6;
}


/* HERO */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;

  background:
  linear-gradient(
    rgba(5, 5, 8, 0.28),
    rgba(5, 5, 8, 0.62)
  ),
  url("images/bar-garden.jpg") center center / cover no-repeat;
}

.topbar {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 22px 5%;
  position: relative;
  z-index: 2;
}

.top-logo {
  width: 210px;
  max-width: 45vw;
  height: auto;
  display: block;
}

.hero-content {
  flex: 1;
  width: min(1100px, 90%);
  margin: auto;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  padding: 90px 0 110px;
  position: relative;
  z-index: 2;

  text-align: center;
}
.hero-logo {
  width: min(780px, 92%);
  height: auto;
  display: block;
  margin: 0 auto 18px;

  filter:
    drop-shadow(0 0 14px rgba(255, 30, 165, 0.40))
    drop-shadow(0 0 24px rgba(0, 165, 255, 0.25));
}
.tagline {
  margin: 0 0 28px;
  font-size: clamp(1.15rem, 2.3vw, 1.6rem);
  letter-spacing: 0.08em;
  color: #f4f4f6;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  min-height: 52px;
  padding: 14px 24px;

  border-radius: 999px;
  border: none;

  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;

  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #ff3faf;
  color: #09090d;
  box-shadow: 0 0 24px rgba(255, 63, 175, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 0 34px rgba(255, 63, 175, 0.55);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
}


/* GENERAL SECTIONS */

.section {
  padding: 90px 5%;
  background: #f5f2ed;
  color: #15151a;
}

.dark-section {
  background: #111117;
  color: #ffffff;
}

.section-inner {
  width: min(1100px, 100%);
  margin: auto;
}

.section-label {
  margin: 0 0 8px;

  text-transform: uppercase;
  letter-spacing: 0.20em;
  font-size: 0.78rem;
  font-weight: 700;

  color: #ff3faf;
}

.section h2 {
  margin: 0 0 24px;

  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.intro-text {
  max-width: 760px;
  font-size: 1.15rem;
}


/* MENU */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.menu-card {
  min-height: 180px;
  padding: 30px;

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    );

  border: 1px solid rgba(145, 220, 255, 0.15);
}

.menu-card h3 {
  margin-top: 0;
  margin-bottom: 12px;

  font-size: 1.35rem;
  color: #9cecff;
}

.menu-card p {
  margin-bottom: 0;
  color: #d2d2d8;
}


/* RESERVATION */

.reservation-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.reservation-form {
  display: grid;
  gap: 16px;

  padding: 30px;
  background: #ffffff;

  border-radius: 22px;

  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.10);
}

.reservation-form label {
  display: grid;
  gap: 7px;
  font-size: 0.92rem;
  font-weight: 700;
}

.reservation-form input,
.reservation-form textarea {
  width: 100%;
  padding: 14px 15px;

  border: 1px solid #d5d5d9;
  border-radius: 11px;

  background: #fafafa;
  color: #15151a;

  font: inherit;
}

.reservation-form textarea {
  resize: vertical;
  min-height: 110px;
}

.reservation-form input:focus,
.reservation-form textarea:focus {
  outline: none;
  border-color: #ff3faf;
  box-shadow: 0 0 0 3px rgba(255, 63, 175, 0.12);
}


/* HOURS */

.hours {
  max-width: 720px;
  margin-top: 32px;

  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 25px;

  padding: 15px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hours span {
  color: #d8d8dd;
}

.hours strong {
  color: #ffffff;
}


/* LOCATION */

.location-text {
  font-size: 1.15rem;
}


/* FOOTER */

footer {
  text-align: center;
  padding: 65px 20px;

  background: #07070a;
  color: #aaaab2;
}

.footer-logo {
  width: min(400px, 80vw);
  height: auto;
  display: block;
  margin: 0 auto 22px;

  filter:
    drop-shadow(0 0 12px rgba(255, 30, 165, 0.28))
    drop-shadow(0 0 18px rgba(0, 165, 255, 0.18));
}

.copyright {
  margin-top: 25px;
  font-size: 0.82rem;
}


/* MOBILE */

@media (max-width: 760px) {

  .hero {
    min-height: 88vh;
  }

  .topbar {
    padding: 18px 5%;
  }

  .top-logo {
    width: 150px;
  }

  .hero-content {
    width: 88%;
    padding: 30px 0 80px;
  }

  .hero-logo {
    width: 100%;
    margin-left: 0;
  }

  .tagline {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons .btn {
    flex: 1;
    min-width: 145px;
  }

  .section {
    padding: 70px 6%;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .reservation-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .reservation-form {
    padding: 22px;
  }

  .hours div {
    gap: 15px;
  }

}
.kitchen-note {
  max-width: 720px;
  margin-top: 22px;
  padding: 16px 18px;

  border-left: 4px solid #ff3faf;

  background: rgba(255, 63, 175, 0.08);

  color: #ffffff;
  font-weight: 700;
}

.menu-items {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;

  padding-bottom: 10px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.menu-item strong {
  white-space: nowrap;
  color: #ffffff;
}

.whatsapp-booking {
  margin-top: 22px;
  text-align: center;
}

.whatsapp-booking p {
  margin-bottom: 10px;
}

.whatsapp-btn {
  background: #ffffff;
  color: #111111;
  border: 1px solid #d7d7d7;
}
.calendar-header {
  max-width: 720px;
  margin-top: 35px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;
}

.calendar-header h3 {
  margin: 0;

  font-size: 1.6rem;
  color: #ffffff;
}

.calendar-arrow {
  width: 44px;
  height: 44px;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);

  background: rgba(255,255,255,.05);
  color: #ffffff;

  font-size: 1.7rem;
  cursor: pointer;
}

.calendar-arrow:hover {
  background: rgba(255,255,255,.12);
}

.calendar-weekdays {
  max-width: 720px;

  display: grid;
  grid-template-columns: repeat(7, 1fr);

  margin-top: 25px;

  text-align: center;

  font-size: .8rem;
  font-weight: 700;

  color: #9cecff;
}

.calendar-grid {
  max-width: 720px;

  display: grid;
  grid-template-columns: repeat(7, 1fr);

  gap: 8px;

  margin-top: 10px;
}

.calendar-day {
  min-height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: rgba(255,255,255,.06);

  border: 1px solid rgba(255,255,255,.08);

  color: #ffffff;

  font-weight: 700;

  cursor: pointer;
}

.calendar-day:hover {
  background: rgba(255,255,255,.12);
}

.calendar-day.closed {
  opacity: .35;
  cursor: not-allowed;
}

.calendar-day.available {
  border-color: rgba(156,236,255,.35);
}

.calendar-day.selected {
  background: #ff3faf;
  color: #111111;

  border-color: #ff3faf;
}

.calendar-day.empty {
  background: transparent;
  border: none;
  cursor: default;
}

.calendar-key {
  max-width: 720px;

  display: flex;
  gap: 25px;
  flex-wrap: wrap;

  margin-top: 18px;

  font-size: .85rem;
  color: #cfcfd5;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 30px;
}

.location-details {
  font-size: 17px;
  line-height: 1.7;
}

.location-details h3 {
  font-size: 26px;
  margin-top: 0;
}

.location-details a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.location-details a:hover {
  text-decoration: underline;
}

.map-container {
  overflow: hidden;
  border-radius: 14px;
}

.map-container iframe {
  display: block;
  width: 100%;
  min-height: 400px;
}

@media (max-width: 750px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .map-container iframe {
    min-height: 320px;
  }
}

/* FOOD & ATMOSPHERE GALLERY */

.food-gallery-section {
  overflow: hidden;
}

.gallery-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
  margin-bottom: 28px;
}

.gallery-heading h2 {
  margin-bottom: 0;
}

.gallery-controls {
  display: flex;
  gap: 10px;
}

.gallery-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: #17171d;
  color: white;
  font-size: 30px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.gallery-arrow:hover {
  transform: scale(1.08);
  background: #ff3b85;
}


.food-gallery {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 10px;
}

.food-gallery::-webkit-scrollbar {
  display: none;
}


.gallery-card {
  position: relative;
  flex: 0 0 calc((100% - 36px) / 3);
  height: 390px;
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #111;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}


.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.72) 0%,
      rgba(0,0,0,0.08) 50%,
      transparent 70%
    );
  pointer-events: none;
}


.gallery-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  color: white;
  font-size: 20px;
  font-weight: 700;
}


/* MOBILE */

@media (max-width: 750px) {

  .gallery-heading {
    align-items: center;
  }

  .gallery-card {
    flex: 0 0 86%;
    height: 420px;
  }

  .gallery-caption {
    font-size: 19px;
  }

}
/* CALENDAR POLISH */

.calendar-day {
  position: relative;
  min-height: 110px;
  flex-direction: column;
  gap: 4px;
  padding: 10px 6px;
  text-align: center;
}

.calendar-day-name {
  font-size: 0.75rem;
  opacity: 0.75;
}

.calendar-month-name {
  font-size: 0.72rem;
  opacity: 0.7;
}

.calendar-event {
  display: block;
  margin-top: 6px;
  padding: 7px 6px;
  border-radius: 10px;
  background: rgba(255, 63, 175, 0.16);
  border: 1px solid rgba(255, 63, 175, 0.4);
  font-size: 0.68rem;
  line-height: 1.25;
}

.calendar-event strong {
  display: block;
  color: #ffffff;
  font-size: 0.72rem;
  margin-bottom: 3px;
}

.calendar-event small {
  display: block;
  color: #f1f1f1;
  margin-top: 2px;
}

.calendar-day:has(.calendar-event) {
  border-color: #ff3faf;
  box-shadow: 0 0 18px rgba(255, 63, 175, 0.18);
}

.calendar-day:has(.calendar-event)::before {
  content: "ÉVÉNEMENT";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 8px;
  border-radius: 999px;
  background: #ff3faf;
  color: #111;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.calendar-spacer {
  min-height: 110px;
}
