/*
Theme Name: Harlem Club Theme Bogo Events Photos
Theme URI: https://example.com/
Author: Your Name
Description: Custom responsive bilingual theme for HARLEM with events CPT and bundled photos.
Version: 1.0
*/

:root {
  --bg-dark: #000;
  --bg-darker: #050505;
  --accent: #0ec7c7;
  --text-light: #ffffff;
  --text-muted: #cccccc;
  --header-height: 70px;
  --transition-fast: 0.25s ease;
  --font-main: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

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

html, body {
  margin: 0;
  padding: 0;
  color: var(--text-light);
  background: var(--bg-dark);
  font-family: var(--font-main);
  scroll-behavior: smooth;
}

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

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

hr {margin:50px 0;}

@media screen and (max-width:768px) {
    .pc {display:none!important;}
}
@media screen and (min-width:768px) {
    .sp {display:none!important;}
}

/* Layout */

.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section--dark {
  background: var(--bg-dark);
}

.section--darker {
  background: var(--bg-darker);
}

.section__title {
  font-size: 28px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(0,0,0,0.35);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.site-header__inner {
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Push hamburger to the right end of header */
.site-header .header-inner,
.site-header .site-header__inner {
  display: flex;
  align-items: center;
}

/* This makes the hamburger hug the right side */
.site-header .hamburger {
  margin-left: auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-logo img {
  height: 32px;
}

/* Desktop nav */

.main-nav {
  display: none;
}

.main-nav__list {
  list-style: none;
  display: flex;
  gap: 24px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.main-nav__link {
  position: relative;
  padding-bottom: 4px;
}

.main-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-fast);
}

.main-nav__link:hover::after,
.main-nav__link:focus-visible::after {
  width: 100%;
}

/* Bogo language switcher */

.lang-switcher {
  align-items: center;
  gap: 8px;
  margin-left: 24px;
  font-size: 12px;
  right: 10vw;
  position: absolute;
}

.lang-switcher a, .lang-switcher span {font-size:11px!important;}
.bogoflags, .bogoflags-before:before {margin:0 0 0 8px!important;}

@media screen and (max-width:768px) {
    .site-header .lang-switcher span {display:block;}
    .lang-switcher {right:15vw!important;}
}

.bogo-language-switcher {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.bogo-language-switcher li a {
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bogo-language-switcher li.current a,
.bogo-language-switcher li a[aria-current="page"] {
  opacity: 1;
  font-weight: 600;
}

/* Hamburger icon */

.hamburger {
  width: 40px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001; /* above overlay */
}

.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* Animate hamburger → X when active */
.hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Slide-out overlay menu (PC & mobile) */

.mobile-menu {
  position: fixed;
  inset: 0;
  /* was rgba(0,0,0,0.96); → make it see-through */
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 80px 0px 40px;
  z-index: 998;

  /* was translateX(-100%) → slide from RIGHT instead */
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.4s ease;
}

.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__inner {
  max-width: 520px;
  width: 100%;
}

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  text-align: right;
  font-size: 30px;
  letter-spacing: 1px;
  font-weight: bold;
}

/* Push menu panel content to the RIGHT side instead of left */
.mobile-menu__inner {
  margin-left: auto;          /* This is the key line */
  width: 100%;                 /* Adjust width as you like (60–90% feels good) */
  padding-right: 40px;        /* Space from right */
}
.mobile-menu__inner {
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 80px 40px;
  border-left: 1px solid rgba(255,255,255,0.1); /* subtle border */
}

/* Position close button properly on the right */
.mobile-menu__close {
  right: 30px;                /* ensures X stays right side */
  display:none!important; /*2nd one?*/
}

button.hamburger {
    border: none;
    background: none;
}

.mobile-menu__item {
  font-size: 28px;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.mobile-menu__item a {
  color: #fff;
  text-decoration: none;
}

.mobile-menu__item a:hover {
  text-decoration: underline;
}

/* When menu is open, lock scroll */
body.menu-open {
  overflow: hidden;
}

/* Desktop behaviour: still use overlay menu */

@media (min-width: 901px) {
  .hamburger {
    display: flex;          /* show hamburger on PC too */
  }

  .main-nav {
    display: none;          /* hide any old inline nav if you had one */
  }
}

/* Hero */

.hero {
  margin-top: var(--header-height);
  position: relative;
  min-height: calc(100vh - var(--header-height));
  background: url('assets/img/header-bg.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.1));
}

.hero__inner {
  position: relative;
  padding: 40px 20px 80px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero__title {
  font-family: "Courier New", monospace;
  font-size: 32px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero__cta {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 30px;
  background: var(--accent);
  color: #000;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
}

/* Social strip */

.social-strip {
  background: #222;
  padding: 12px 0;
}

.social-strip__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
}

.social-tagline {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--text-muted);
}

/* Events */

.events-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.events-month {
  font-size: 24px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.events-subtitle {
  font-size: 12px;
  color: var(--text-muted);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.event-card {
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.event-card__body {
  padding: 16px 18px 18px;
}

.event-card__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.event-card__meta {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.event-card__btn {
  margin-top: 14px;
  padding: 10px 18px;
  border-radius: 3px;
  background: transparent;
  border: 1px solid #555;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-card__image img {width:100%;}

/* VIP */

.vip-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.vip-copy {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.vip-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.vip-table th,
.vip-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #333;
}

.vip-table th {
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
}

.vip-table__label {
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-top: 20px;
}

/* Access */

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 30px;
}

.access-map {
  background: #111;
  border-radius: 4px;
  overflow: hidden;
  min-height: 260px;
}

.access-info {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.access-info strong {
  color: var(--text-light);
}

.access-info__title {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  margin-bottom: 6px;
}

/* Recruit */

.recruit-banner {
  background: #d90000;
  padding: 40px 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 24px;
}

.recruit-section {
  max-width: 800px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.recruit-section h3 {
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 24px 0 10px;
}

.recruit-list {
  padding-left: 18px;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 3px;
  border: none;
  color: #d90000;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
  border:1px solid #d90000;
}

.btn--outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid #666;
}

/* Footer */

.site-footer {
  background: #050505;
  padding: 30px 20px 40px;
  font-size: 12px;
  color: #666;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

/* Single event */

.single-event-hero {
  margin-top: var(--header-height);
  background: #000;
}

.single-event-hero__image {
  max-height: 420px;
  overflow: hidden;
}

.schedule-body__info .entry-content p{
  letter-spacing: 0.5px;
  line-height: 1.3rem;
}

/* Responsive */

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .lang-switcher {
    display: none;
  }

  .hero {
    background-image: url('assets/img/header-bg.png');
    min-height: 80vh;
  }

  .vip-layout,
  .access-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* === Schedule (single & archive) inspired by SEL OCTAGON TOKYO === */

.schedule-wrapper {
  padding-top: 40px;
  padding-bottom: 60px;
}

.schedule-header {
  text-align: center;
  margin-bottom: 30px;
}

.schedule-header__title {
  font-size: 26px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.schedule-header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 15px;
}

.schedule-header__nav a {
  text-decoration: none;
  border-bottom: 1px solid #555;
}

.schedule-header__date-big {
  font-size: 20px;
  letter-spacing: 0.16em;
}

.schedule-body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: flex-start;
}

.schedule-body__image {
  background: #000;
}

.schedule-body__image img {
  width: 100%;
  height: auto;
  display: block;
}

.schedule-body__info-title {
  font-size: 22px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.schedule-body__meta {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.schedule-body__meta strong {
  color: var(--text-light);
}

/* Schedule archive list */

.schedule-archive-header {
  text-align: center;
  margin-bottom: 20px;
}

.schedule-archive-header__title {
  font-size: 26px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.schedule-archive-header__month {
  font-size: 16px;
  letter-spacing: 0.16em;
}

.schedule-archive-list {
  border-top: 1px solid #333;
}

.schedule-archive-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid #222;
  gap: 20px;
}

.schedule-archive-item__date {
  min-width: 140px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.schedule-archive-item__title {
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.schedule-archive-item__title a {
  text-decoration: none;
}

/* Responsive tweaks */

@media (max-width: 900px) {
  .schedule-body {
    grid-template-columns: minmax(0, 1fr);
  }
  .schedule-header__nav {
    font-size: 12px;
  }
  .schedule-header__date-big {
    font-size: 18px;
  }
  .schedule-archive-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .schedule-archive-item__date {
    margin-bottom: 4px;
  }
}


/* Centered HARLEM Logo Only */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__inner--logo-only {
    text-align: center;
    z-index: 1;
}
.hero__logo {
    max-width: 260px;
    width: 60vw;
}

/* ========== Harlem Schedule Calendar ========== */

.harlem-schedule {
  padding: 4rem 0;
}

.schedule-header {
  margin-bottom: 2rem;
}

.schedule-header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.schedule-header__title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}

.schedule-header__nav-link {
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}

.schedule-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.schedule-calendar__dow {
  font-size: 0.8rem;
  text-align: center;
  font-weight: 600;
  padding-bottom: 0.5rem;
}

.schedule-calendar__dow--sun {
  color: #e85a5a;
}

.schedule-calendar__dow--sat {
  color: #4aa3ff;
}

.schedule-calendar__cell {
  min-height: 120px;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.3rem;
  position: relative;
  background: rgba(0,0,0,0.3);
}

.schedule-calendar__cell--empty {
  background: transparent;
  border: none;
}

.schedule-calendar__cell--has-events {
  background: rgba(255,255,255,0.05);
}

.schedule-calendar__day-number {
  font-size: 0.75rem;
  font-weight: 600;
}

.schedule-calendar__events {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.schedule-calendar__event {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  font-size: 0.7rem;
}

.schedule-calendar__event-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 0.2rem;
}

.schedule-calendar__event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover!important;
  object-position: top;
}

.schedule-calendar__event-title {
  line-height: 1.2;
}

.schedule-calendar__day-label {
  display:none!important;
}

.harlem-schedule .container {max-width:1500px!important;}

.schedule-calendar__events .schedule-calendar__event:first-child {margin-bottom:10px;}

/* Responsive tweaks */
@media (max-width: 768px) {
  .schedule-calendar__cell {
    min-height: 100px;
  }

  .schedule-header__title {
    font-size: 1.4rem;
  }
  .schedule-calendar__event-image {width: 100%!important; max-height: 150px!important;}
}

.contact-form--recruit,
.vip-form {
  max-width: 820px;
  margin: 24px auto 0;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
               "Yu Gothic", "游ゴシック体", Meiryo, sans-serif;
}

.cf-row {
  margin-bottom: 18px;
}

.cf-row.two-cols {
  display: flex;
  gap: 16px;
}

.cf-col {
  flex: 1;
}

.contact-form--recruit label,
.vip-form label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.contact-form--recruit .required,
.vip-form .required {
  color: #ff4a4a;
}

/* inputs */
.contact-form--recruit input[type="text"],
.contact-form--recruit input[type="email"],
.contact-form--recruit input[type="tel"],
.contact-form--recruit textarea,
.vip-form input[type="text"],
.vip-form input[type="email"],
.vip-form input[type="tel"],
.vip-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
}

.contact-form--recruit input::placeholder,
.contact-form--recruit textarea::placeholder,
.vip-form input::placeholder,
.vip-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

/* submit button */
.contact-form--recruit input[type="submit"],
.vip-form input[type="submit"] {
  display: inline-block;
  min-width: 220px;
  padding: 14px 34px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: #000;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease,
              box-shadow 0.15s ease,
              background 0.15s ease,
              color 0.15s ease;
}

.contact-form--recruit input[type="submit"]:hover,
.vip-form input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  background: #f5f5f5;
}

/* WRAPPER */
.contact-form--recruit,
.vip-form,
.reserve-form {
  max-width: 820px;
  margin: 24px auto 0;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
               "Yu Gothic", "游ゴシック体", Meiryo, sans-serif;
}

/* ROWS */
.cf-row,
.reserve-row {
  margin-bottom: 18px;
}

.cf-row.two-cols,
.reserve-row.two-cols {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cf-col,
.reserve-col {
  flex: 1;
  min-width: 0;
}

/* LABELS */
.contact-form--recruit label,
.vip-form label,
.reserve-form label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.contact-form--recruit .required,
.vip-form .required,
.reserve-form .required {
  color: #ff4a4a;
}

/* INPUTS & TEXTAREA */
.contact-form--recruit input[type="text"],
.contact-form--recruit input[type="email"],
.contact-form--recruit input[type="tel"],
.contact-form--recruit textarea,
.vip-form input[type="text"],
.vip-form input[type="email"],
.vip-form input[type="tel"],
.vip-form textarea,
.reserve-form input[type="text"],
.reserve-form input[type="email"],
.reserve-form input[type="tel"],
.reserve-form input[type="tel"],
.reserve-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
}

.contact-form--recruit input::placeholder,
.contact-form--recruit textarea::placeholder,
.vip-form input::placeholder,
.vip-form textarea::placeholder,
.reserve-form input::placeholder,
.reserve-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

/* TABLE CHECKBOXES (VIP table choices) */
.reserve-form .table-checkboxes {
  margin-top: 4px;
}

.reserve-form .table-checkboxes .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin-right: 12px;
  margin-bottom: 8px;
}

.reserve-form .table-checkboxes input[type="checkbox"] {
  margin-right: 6px;
}

/* SUBMIT BUTTON */
.contact-form--recruit input[type="submit"],
.vip-form input[type="submit"],
.reserve-form input[type="submit"] {
  display: inline-block;
  min-width: 220px;
  padding: 14px 34px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: #000;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease,
              box-shadow 0.15s ease,
              background 0.15s ease,
              color 0.15s ease;
}

.contact-form--recruit input[type="submit"]:hover,
.vip-form input[type="submit"]:hover,
.reserve-form input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  background: #f5f5f5;
}

/* MOBILE: stack two columns */
@media (max-width: 600px) {
  .cf-row.two-cols,
  .reserve-row.two-cols {
    flex-direction: column;
    gap: 10px;
  }
}


@media (max-width: 640px) {
  .cf-row.two-cols {
    flex-direction: column;
  }
}

/* VIP page layout */
.vip-layout {
  display: flex;
  flex-direction: column;   /* mobile: stacked */
  gap: 2.5rem;
}

.vip-layout__col {
  flex: 1 1 0;
  min-width: 0;
}

/* Desktop: two columns side by side */
@media (min-width: 960px) {
  .vip-layout {
    flex-direction: row;
    align-items: flex-start;
  }
  .vip-layout__col {
    padding: 0 1.5rem;
  }
  .vip-layout__col:first-child {
    padding-left: 0;
  }
  .vip-layout__col:last-child {
    padding-right: 0;
  }
}

.vip-table__image img {height:400px!important;}

/* Page hero (global header banner) */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* darken image a bit */
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
}

.page-hero__title {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}

/* Optional: breadcrumb / subtitle could go here later */

/* Desktop tweaks */
@media (min-width: 960px) {
  .page-hero {
    min-height: 420px;
  }
}

/* Smooth background movement */
.page-hero {
  will-change: background-position;
  transition: background-position 0.1s linear;
}

/* TOP page Ken Burns hero */
.top-kenburns {
  position: relative;
  width: 100%;
  height: calc(100vh - 40px);
  min-height: 420px;
  overflow: hidden;
}

.top-kenburns__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  animation: kenburnsZoom 18s ease-in-out infinite;
}

/* Set your own images here */
.top-kenburns__slide--1 {
  background-image: url('assets/img/header-bg.png');
  animation-delay: 0s;
}
.top-kenburns__slide--2 {
  background-image: url('/wp-content/uploads/2025/12/S__64323646.jpg');
  animation-delay: 6s;
}
.top-kenburns__slide--3 {
  background-image: url('/wp-content/uploads/2025/12/S__64323647.jpg');
  animation-delay: 12s;
}

.top-kenburns__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.top-kenburns__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

/* Ken Burns keyframes */
@keyframes kenburnsZoom {
  0% {
    opacity: 0;
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  5% {
    opacity: 1;
  }
  40% {
    opacity: 1;
    transform: scale(1.15) translate3d(2%, 2%, 0);
  }
  60% {
    opacity: 0;
    transform: scale(1.18) translate3d(3%, 3%, 0);
  }
  100% {
    opacity: 0;
    transform: scale(1.18) translate3d(3%, 3%, 0);
  }
}

@media (max-width: 768px) {
  .top-kenburns {
    height: calc(100vh - 40px);
    min-height: 320px;
  }
}

/* Centered logo over Ken Burns background */
.top-kenburns__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.top-kenburns__logo {
  max-width: 260px;
  width: 60vw;
  height: auto;
}

/* Hide the small header logo on TOP page only 
.home .site-header .site-logo,
.front-page .site-header .site-logo {
  display: none;
} */

/* --- Force hamburger + language switcher visible on small screens --- */
@media (max-width: 768px) {

  /* Make sure header is above everything (Ken Burns, etc.) */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3000;
  }

  /* Make sure the hamburger itself is visible */
  .site-header .hamburger {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }

  .site-header .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;   /* visible on dark bg */
    border-radius: 1px;
  }

  /* Bogo language switcher: force it to show */
  .site-header .lang-switcher {
    display: block !important;
    z-index: 3001;
  }

  /* Some Bogo themes output links as <a> etc. Make them visible */
  .site-header .lang-switcher a,
  .site-header .lang-switcher span {
    color: #fff !important;
  }
}

/* ================================================
 *    BOGO LANGUAGE SWITCHER — clean mobile layout
 *       Flag on top, text centered below
 *          ================================================*/
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Each language item */
.lang-switcher a,
.lang-switcher span {
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 12px;            /* adjust if needed */
  color: #fff !important;
}

/* Flag icon */
.lang-switcher img {
  width: 22px;                /* size flag here */
  height: auto;
  margin-bottom: 3px;         /* spacing between flag & text */
  display: block;
}

/* Reduce spacing and improve alignment on small screens */
@media (max-width: 768px) {
  .lang-switcher {
    gap: 1rem;
    margin-right: 10px;       /* keeps space from hamburger */
  }

  .lang-switcher a,
  .lang-switcher span {
    font-size: 11px;
  }
}

/* Base desktop layout (keep similar to what you have) */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

/* Whole card as link */
.event-card--link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Make the image keep its card shape */
.event-card__image img {
  display: block;
  width: 100%;
  height: auto;
}

/* Desktop stays the same – only mobile below changes layout */
@media (max-width: 768px) {

  .events-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1.5rem;
    padding-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
  }

  /* center first & last cards with side space */
  .events-grid::before,
  .events-grid::after {
    content: "";
    flex: 0 0 10vw;   /* space on left & right – tweak if needed */
  }

  .event-card {
    flex: 0 0 auto;
    width: 80vw;              /* big card, nearly full width */
    max-width: 80vw;          /* adjust 75–90vw to taste */
    scroll-snap-align: center;
    margin: 0 auto;
  }

  /* make sure image fills the card but keeps aspect ratio */
  .event-card__image img {
    display: block;
    width: 100%;
    height: auto;
  }
}

.event-card__image img {
    max-height: 380px;
    object-fit: cover;
    object-position: top;
}

@media screen and (min-width:768px) {
    .event-card__image img {max-height:330px;}
    .events-grid {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
}

/* ================================
 *    SPACE RENTAL PAGE
 *       ================================ */

.space-rental {
  color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.space-rental__header {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.space-rental__kicker {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.space-rental__title {
  font-size: 26px;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.space-rental__lead {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
}

/* cards grid */

.space-rental__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto 56px;
}

.space-rental-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 24px 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
}

.space-rental-card__title {
  font-size: 15px;
  margin: 0 0 14px;
  letter-spacing: 0.08em;
}

.space-rental-card__subtitle {
  font-size: 14px;
  font-weight: 600;
  margin: 20px 0 8px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.space-rental-card__subtitle span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.space-rental-card__text {
  font-size: 13px;
  line-height: 1.7;
}

.space-rental-card__note {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
}

.space-rental-card__divider {
  height: 1px;
  margin: 22px 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.0),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.0)
  );
}

/* tables */

.space-rental-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.space-rental-table th,
.space-rental-table td {
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.space-rental-table th {
  text-align: left;
  padding-right: 12px;
  white-space: nowrap;
}

.space-rental-table td {
  text-align: right;
}

.space-rental-table__note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 4px;
}

/* facilities */

.space-rental-facilities {
  max-width: 1000px;
  margin: 0 auto 48px;
  text-align: center;
}

.space-rental-facilities__title {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
}

.space-rental-facilities__image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.space-rental-facilities__link {
  margin-top: 12px;
}

.space-rental-facilities__link a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

/* contact info */

.space-rental-contact {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 13px;
}

.space-rental-contact__title {
  font-size: 14px;
  margin-bottom: 6px;
}

.space-rental-contact__text {
  color: rgba(255, 255, 255, 0.8);
}

/* mobile */

@media (max-width: 880px) {
  .space-rental__grid {
    grid-template-columns: 1fr;
  }

  .space-rental-card {
    padding: 20px 18px 22px;
  }

  .space-rental__lead {
    text-align: left;
  }
}

