@charset "UTF-8";

/* View Transitons */
@view-transition {
  navigation: auto;
}

:root {
  --eexot-mainFont: "Geologica", sans-serif;
  --eexot-transition: all 0.3s ease-in-out;
  --eexot-mainColor: white;
  --eexot-secondaryColor: #FFF78F;
  --eexot-darkColor: #B6A188;
  --eexot-radius: clamp(0.25rem, 0.5vw, 0.5rem);
  --eexot-gradient: radial-gradient(circle, #392115 60%, #CCB79C 100%);

  /* standardized hover transition */
  --eexot-hover-duration: 260ms;
  --eexot-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* include opacity so list-items can use same variable */
  --eexot-hover: transform var(--eexot-hover-duration) var(--eexot-ease), opacity var(--eexot-hover-duration) linear, background var(--eexot-hover-duration) var(--eexot-ease), box-shadow var(--eexot-hover-duration) var(--eexot-ease);

  /* link colors */
  --eexot-link-color: #1f2a36;
  /* high-contrast default for links on white pages */
  --eexot-link-accent: var(--eexot-darkColor);
  /* underline/hover accent */
}

/* Reusable utility classes (colors, radius, gradient, surfaces) */
.eexot-bg-gradient {
  background: var(--eexot-gradient) !important;
  color: var(--eexot-mainColor) !important;
}

.eexot-bg-accent {
  background-color: var(--eexot-secondaryColor) !important;
  color: #222 !important;
}

.eexot-text-main {
  color: var(--eexot-mainColor) !important;
}

.eexot-text-accent {
  color: var(--eexot-secondaryColor) !important;
}

.eexot-radius {
  border-radius: var(--eexot-radius) !important;
}

.eexot-shadow {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.dark-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

/* standard hover utility */
.eexot-hover {
  transition: var(--eexot-hover);
  will-change: transform, background, box-shadow;
}

/* Default link component (rich underline + variants) */
.eexot-link {
  color: var(--eexot-link-color);
  text-decoration: none;
  position: relative;
  font-weight: 700;
  transition: color var(--eexot-hover-duration) var(--eexot-ease);
}

.eexot-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18em;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), var(--eexot-link-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--eexot-hover-duration) var(--eexot-ease);
  border-radius: 2px;
}

.eexot-link:hover::after,
.eexot-link:focus::after {
  transform: scaleX(1);
}

.eexot-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 5px rgba(255, 247, 143, 0.12);
  border-radius: 0.25rem;
}

/* Variants */
.eexot-link--inverse {
  color: var(--eexot-mainColor);
}

.eexot-link--inverse::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), var(--eexot-link-accent));
}

.eexot-link--muted {
  color: #6c757d;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .eexot-link::after {
    transition: none;
    transform: none !important;
  }
}

.eexot-card {
  background: rgba(255, 255, 255, 0.98);
  color: #222;
  border-radius: var(--eexot-radius);
  padding: 1.25rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: var(--eexot-hover);
}

.eexot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transition: var(--eexot-hover);
}

.eexot-card.eexot-gradient .card-title,
.eexot-card.eexot-gradient .card-text,
.eexot-card.eexot-gradient p {
  color: rgba(255, 255, 255, 0.95);
}

/* Quick Links section spacing and card layout */
.quick-links {
  background-image: url('../assets/img/main-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 5rem 0;
}

.quick-links .eexot-card {
  /* allow image to sit full-bleed */
  padding: 0;
  overflow: hidden;
}

.quick-links .card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: none;
  background: transparent;
}

/* Higher-specificity override so .eexot-gradient is respected inside Quick Links
   (the .quick-links .card rule uses the same specificity and appears later in the file) */
.quick-links .card.eexot-card.eexot-gradient,
.quick-links .card.eexot-gradient {
  background: var(--eexot-gradient);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.quick-links .card-img-top {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.quick-links .card-body {
  background: transparent;
  padding: 1.25rem;
}

@media (min-width: 768px) {
  .quick-links .card {
    min-height: 200px;
  }

  .quick-links .card-img-top {
    height: 160px;
  }
}

@media (min-width: 1200px) {
  .quick-links .card-img-top {
    height: 180px;
  }
}

.eexot-btn {
  display: inline-block;
  padding: 0.65rem 1.1rem;
  border-radius: var(--eexot-radius);
  font-weight: 700;
  text-decoration: none;
  color: var(--eexot-mainColor);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--eexot-hover);
}

.eexot-btn:hover {
  background: var(--eexot-secondaryColor);
  color: #222;
  border-color: var(--eexot-secondaryColor);
}

.eexot-btn-outline {
  background: var(--eexot-gradient);
  color: var(--eexot-secondaryColor);
  border: 2px solid var(--eexot-secondaryColor);
}

.eexot-btn[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
  filter: grayscale(0.12);
}

@media (max-width: 576px) {
  .eexot-card {
    padding: 1rem;
  }

  .eexot-btn {
    padding: 0.6rem 0.9rem;
  }
}


/* Body Stylings */

body {
  font-family: var(--eexot-mainFont);
  background: var(--eexot-gradient);
  color: var(--eexot-mainColor);
  line-height: 1.6;
}

/* Menu Styling */

#mainNav {
  padding: 1rem
}

/* Allow navbar items to wrap when navbar is expanded (desktop / lg+) */
@media (min-width: 992px) {
  #mainNav .navbar-nav {
    flex-wrap: wrap;
  }
}

#mainNav .navbar-toggler {
  padding: 0.75rem;
  font-size: 0.75rem;
  font-family: var(--eexot-mainFont);
  text-transform: none;
  font-weight: 700;
}

/* Mobile menu background */
@media (max-width: 991px) {

  /* Keep collapsed nav vertical on mobile — prevent horizontal wrapping */
  #mainNav .navbar-nav {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
  }

  #navbarResponsive {
    background: var(--eexot-gradient);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0 var(--eexot-radius) 0 var(--eexot-radius);
  }

  #mainNav.navbar-shrink {
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
}

#mainNav .navbar-brand {
  color: white;
  font-family: var(--eexot-mainFont);
  font-weight: 700;
  letter-spacing: 0.0625em;
  text-transform: none;
}

#mainNav .navbar-brand img {
  height: 1.5rem;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu.mainDropdown {
  color: white;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border: none;
  margin-top: 0.3rem;
  border-radius: 0 var(--eexot-radius) 0 var(--eexot-radius);
}

.dropdown-item {
  font-family: var(--eexot-mainFont);
  font-size: 1rem;
  font-weight: 500;
  color: var(--eexot-mainColor);
  padding: 0.5rem 1rem;
  transition: var(--eexot-transition);
}

.dropdown-item:hover {
  background-color: var(--eexot-mainColor);
  color: black;
  transition: var(--eexot-transition);
}

#mainNav .navbar-nav .nav-item .nav-link {
  font-family: var(--eexot-mainFont);
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.0625em;
}

#mainNav .navbar-nav .nav-item .nav-link.active,
#mainNav .navbar-nav .nav-item .nav-link:hover {
  color: var(--eexot-ciel);
  transition: 0.3s ease-in-out;
}

/* Laptop-friendly nav sizing */
@media (min-width: 992px) and (max-width: 1399px) {
  #mainNav .navbar-nav .nav-item .nav-link {
    font-size: 0.95rem;
    letter-spacing: 0.03em;
  }
}

#mainNav .navbar-nav .nav-item:after {
  content: "";
  display: block;
  margin: auto;
  height: 4px;
  width: 0px;
  background: transparent;
  transition: width 0.5s ease, background-color 0.5s ease;
}

#mainNav .navbar-nav .nav-item:hover:after {
  width: 100%;
  background: white;
  transition: 0.3s ease-in-out;
}

#mainNav.navbar-shrink .navbar-nav .nav-item:hover:after {
  width: 100%;
  background: var(--eexot-mainColor);
  transition: 0.3s ease-in-out;
}

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--eexot-mainColor);
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (min-width: 992px) {
  #mainNav {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border: none;
    background-color: transparent;
    transition: 0.3s ease-in-out;
  }

  #mainNav .navbar-brand {
    font-size: 1.5em;
    transition: font-size 0.3s ease-in-out;
  }

  #mainNav .navbar-brand img {
    height: 6rem;
    transition: height 0.3s ease-in-out;
  }

  #mainNav.navbar-shrink {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
  }

  #mainNav.navbar-shrink .navbar-brand {
    font-size: 1.25em;
  }

  #mainNav.navbar-shrink .navbar-brand svg,
  #mainNav.navbar-shrink .navbar-brand img {
    height: 4rem;
  }

  #mainNav .navbar-nav .nav-item {
    margin-right: 1.2rem;
  }

  #mainNav .navbar-nav .nav-item:last-child {
    margin-right: 0;
  }
}

#mainNav.navbar-shrink .navbar-nav .nav-item .nav-link,
#mainNav.navbar-shrink .navbar-nav .nav-item .nav-link.active,
#mainNav.navbar-shrink .navbar-nav .nav-item .nav-link:hover {
  color: var(--eexot-mainColor) !important;
  transition: 0.3s ease-in-out;
}

/* Masthead Styling */

.masthead {
  min-height: 100vh;
  height: auto;
  background-image: url('../assets/img/main-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: clamp(3rem, 6vh, 5rem);
}

.masthead .container-fluid {
  height: 100%;
}

.masthead .row {
  height: 100%;
}

/* Page Banner Variant (smaller, for content pages) */
.page-banner {
  min-height: 40vh;
  height: auto;
  background-image: url('../assets/img/main-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: clamp(2rem, 3vh, 3rem);
}

.page-banner .container-fluid {
  height: auto;
}

.page-banner .row {
  height: auto;
}

.page-banner .statue-container {
  height: 55vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media (max-width: 991px) {
  .page-banner {
    min-height: auto;
    padding-top: 6rem;
  }

  .page-banner .statue-column {
    height: 40vh;
    min-height: 250px;
  }
}

/* Statue Column */
.statue-column {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.statue-container {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.statue-image {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

/* Text Column */
.text-column {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem;
}

.masthead-text {
  color: white;
  max-width: 600px;
}

.masthead-text img {
  max-width: clamp(200px, 80%, 550px);
  margin-bottom: clamp(1rem, 2vh, 1.5rem);
}

.masthead-title {
  font-family: var(--eexot-mainFont);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: none;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.masthead-title sup {
  font-size: 0.5em;
  font-weight: 700;
}

.masthead-subtitle {
  font-family: var(--eexot-mainFont);
  font-size: clamp(1.5rem, 2.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 3rem;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.masthead-details {
  margin-top: clamp(1.5rem, 3vh, 2.5rem);
  padding-top: clamp(1rem, 2vh, 1.5rem);
  padding-bottom: clamp(2rem, 4vh, 3rem);
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.masthead-date,
.masthead-location {
  font-family: var(--eexot-mainFont);
  font-size: clamp(1.4rem, 2.2vw, 2.4rem);
  font-weight: 600;
  margin: clamp(0.5rem, 1.2vh, 0.8rem) 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.masthead-location {
  font-weight: 300;
  opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .masthead {
    margin-top: 4rem;
    height: auto;
    min-height: 100vh;
  }

  .statue-column {
    order: 1;
    height: 60vh;
    min-height: 400px;
  }

  .statue-container {
    height: 100%;
  }

  .text-column {
    order: 2;
    padding: 3rem 2rem;
  }

  .masthead-text {
    text-align: center;
  }

  .masthead-details {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
}

@media (max-width: 576px) {
  .statue-column {
    height: 50vh;
    min-height: 300px;
  }

  .text-column {
    padding: 2rem 1.5rem;
  }
}

/* Dialogues Masthead Styling */
#dialoguesMasthead {
  background-image: url('../assets/img/dialogues/dialogues-masthead.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

/* Welcome Section Styling */

.welcome-section {
  padding: 2rem 0;
  background-color: white;
}

.welcome-text-column {
  padding: 3rem;
}

.welcome-content {
  max-width: 800px;
}

.welcome-heading {
  font-family: var(--eexot-mainFont);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.welcome-subheading {
  font-family: var(--eexot-mainFont);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300;
  color: #666;
  font-style: italic;
  margin-bottom: 2.5rem;
  line-height: 1.3;
}

.welcome-text {
  font-family: var(--eexot-mainFont);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 400;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.welcome-text-emphasis {
  font-family: var(--eexot-mainFont);
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  font-weight: 600;
  color: #333;
  line-height: 1.8;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 3px solid var(--eexot-mainColor);
}

/* Content Section: white background, bold/modern typography for pages */
.content-section {
  background-color: #ffffff;
  color: #222222;
  padding: 3.5rem 0;
  border-radius: 0.5rem;
}

.content-section .container {
  max-width: 1100px;
}

.content-section h2,
.content-section .section-heading {
  color: #111111;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.content-section p,
.content-section .list-group-item {
  color: #333333;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  font-weight: 500;
}

.content-section .list-group-item {
  background: transparent;
  border: none;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.content-section .badge {
  font-weight: 700;
}

/* Event app: left date card */
.event-date-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
  color: #222;
  padding: 2rem;
  border-radius: var(--eexot-radius);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.event-release-label {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--eexot-secondaryColor);
  margin-bottom: 0.5rem;
}

.event-date {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  margin: 0.25rem 0 0.5rem 0;
}

.event-date-sub {
  color: #666;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* App features list (icons + larger text + subtle animations) */
.app-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.app-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  margin-bottom: 0.75rem;
  color: #333;
  transform: translateY(8px);
  opacity: 0;
  transition: var(--eexot-hover);
  will-change: transform, opacity;
}

.app-features li.in-view {
  transform: none;
  opacity: 1;
}

.app-features li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.app-features li:hover .feature-icon {
  transform: scale(1.06);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.app-features li:hover .feature-icon::after {
  opacity: 1;
}

.feature-text {
  display: block;
}

/* staggered entrance */
.app-features li:nth-child(1) {
  transition-delay: 0.06s;
}

.app-features li:nth-child(2) {
  transition-delay: 0.14s;
}

.app-features li:nth-child(3) {
  transition-delay: 0.22s;
}

.app-features li:nth-child(4) {
  transition-delay: 0.30s;
}

.app-features li:nth-child(5) {
  transition-delay: 0.38s;
}

.app-features li:nth-child(6) {
  transition-delay: 0.46s;
}

@media (max-width: 768px) {
  .app-features li {
    font-size: 1rem;
  }

  .eexot-keydates-icon,
  .feature-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {

  .app-features li,
  .eexot-keydates-icon,
  .feature-icon {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}


@media (max-width: 991px) {
  .content-section {
    padding: 2.5rem 0;
  }

  .content-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.welcome-image-column {
  padding: 2rem;
}

.welcome-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.welcome-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  object-fit: cover;
}

/* Responsive adjustments for welcome section */
@media (max-width: 991px) {
  .welcome-section {
    padding: 4rem 0;
  }

  .welcome-text-column {
    padding: 2rem;
    order: 2;
  }

  .welcome-image-column {
    padding: 2rem;
    order: 1;
  }

  .welcome-content {
    max-width: 100%;
    text-align: center;
  }

  .welcome-text-emphasis {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
}

@media (max-width: 576px) {
  .welcome-section {
    padding: 3rem 0;
  }

  .welcome-text-column,
  .welcome-image-column {
    padding: 1.5rem;
  }
}

.countdown-section,
.organizer-section {
  background: var(--eexot-gradient);
  min-height: 50dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.organizer-card {
  background: var(--eexot-darkColor);
  color: #fff;
  padding: 2rem;
  border-radius: var(--eexot-radius);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* Countdown Container Styling */

.countdown-heading {
  font-family: var(--eexot-mainFont);
  font-size: clamp(1.2rem, 2.5vw, 3rem);
  font-weight: 600;
  color: var(--eexot-mainColor);
  text-transform: uppercase;
}

.countdown-container {
  display: flex;
  width: 100%;
  max-width: 70%;
  justify-content: space-between;
  margin: -3rem auto 0 auto;
}

.days-container,
.hours-container,
.minutes-container,
.seconds-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--eexot-mainColor);
  width: clamp(80px, 15vw, 150px);
  height: clamp(80px, 15vw, 150px);
}

.days,
.hours,
.minutes,
.seconds {
  font-weight: 500;
  font-size: clamp(2.5rem, 8vw, 6rem);
  line-height: 1;
  margin: 2rem 0 0.5rem 0;
}

.days-label,
.hours-label,
.minutes-label,
.seconds-label {
  color: var(--eexot-mainColor);
  text-transform: uppercase;
  font-size: clamp(0.7rem, 1.5vw, 1.2rem);
  font-weight: 300;
  margin-bottom: 5px;
}

@media (min-width: 1920px) {
  .countdown-container {
    max-width: 50%;
    justify-content: space-between;
  }
}

@media (max-width: 920px) {

  .countdown-container {
    max-width: 90%;
    justify-content: space-around;
    gap: 0.5rem;
  }

  .days-container,
  .hours-container,
  .minutes-container,
  .seconds-container {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 576px) {
  .countdown-heading {
    font-size: clamp(1.2rem, 5vw, 2rem);
    margin-bottom: 1rem !important;
  }

  .countdown-container {
    max-width: 95%;
    gap: 0.25rem;
    margin-top: -1rem;
  }

  .days-container,
  .hours-container,
  .minutes-container,
  .seconds-container {
    width: 60px;
    height: 60px;
  }
}

.map {
  filter: grayscale(0.2);
}

/* Coming Soon Page Styling */

.coming-soon-section {
  min-height: 100vh;
  background-image: url('../assets/img/main-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem 2rem;
}

.coming-soon-content {
  color: white;
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.coming-soon-icon {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--eexot-mainColor);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

.coming-soon-title {
  font-family: var(--eexot-mainFont);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.coming-soon-subtitle {
  font-family: var(--eexot-mainFont);
  font-size: clamp(1.2rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.coming-soon-divider {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--eexot-mainColor), transparent);
  margin: 2rem auto;
}

.coming-soon-text {
  font-family: var(--eexot-mainFont);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.coming-soon-text-en {
  font-family: var(--eexot-mainFont);
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.85;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-coming-soon {
  font-family: var(--eexot-mainFont);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 600;
  padding: 0.875rem 2rem;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  border-radius: 0 var(--eexot-radius) 0 var(--eexot-radius);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--eexot-transition);
  text-decoration: none;
  display: inline-block;
}

.btn-coming-soon:hover {
  background-color: var(--eexot-mainColor);
  border-color: var(--eexot-mainColor);
  color: #333;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--eexot-transition);
}

@media (max-width: 768px) {
  .coming-soon-section {
    padding: 6rem 1.5rem 3rem 1.5rem;
  }

  /* .coming-soon-divider { */
  .eexot-keydates-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .eexot-keydates-list .list-group-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.96)) !important;
    color: #222 !important;
    border: none !important;
    margin-bottom: 0.5rem !important;
    padding: 1rem 1.25rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-left: 6px solid transparent !important;
    transition: var(--eexot-hover) !important;
  }

  .eexot-keydates-list .list-group-item .fw-bold {
    font-size: 1.05rem;
    font-weight: 800;
  }

  .eexot-keydates-list .list-group-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  }

  .eexot-keydates-list .list-group-item:hover .eexot-keydates-icon {
    transform: scale(1.06);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  }

  .eexot-keydates-list .list-group-item:hover .eexot-keydates-icon::after {
    opacity: 1;
  }

  .eexot-keydates-list .list-group-item[data-type="date"] {
    border-left-color: var(--eexot-secondaryColor);
  }


  .eexot-badge-date,

  .eexot-badge-date.badge {
    background: linear-gradient(90deg, #FFF78F, #F5E36B) !important;
    color: #222 !important;
    font-weight: 800 !important;
    border: none !important;
  }

  .eexot-badge-tba,
  .eexot-badge-tba.badge {
    background: transparent !important;
    color: var(--eexot-secondaryColor) !important;
    border: 2px dashed rgba(0, 0, 0, 0.06) !important;
    font-weight: 700 !important;
  }


  @media (max-width: 768px) {
    .eexot-keydates-list .list-group-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }

    .eexot-badge-date,
    .eexot-badge-tba {
      align-self: flex-end;
    }
  }

}

/* Keydates custom item styling (non-Bootstrap) */
.eexot-keydates-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.eexot-keydates-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.96));
  color: #222;
  border: none;
  margin-bottom: 0.5rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-left: 6px solid transparent;
  border-radius: var(--eexot-radius);
  transition: var(--eexot-hover);
}

.eexot-keydates-item .fw-bold {
  font-size: 1.05rem;
  font-weight: 800;
}

.eexot-keydates-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.eexot-keydates-item[data-type="date"] {
  border-left-color: var(--eexot-secondaryColor);
}

/* icon alignment inside the item */
.eexot-keydates-item>div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.eexot-keydates-icon,
.feature-icon {
  position: relative;
  overflow: hidden;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--eexot-gradient);
  color: var(--eexot-secondaryColor);
  font-size: 1.05rem;
  flex: 0 0 44px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04) inset;
  transition: var(--eexot-hover);
}

.eexot-badge-date {
  background: var(--eexot-gradient);
  color: var(--eexot-mainColor);
  font-weight: 800;
  border: none;
  border-radius: 2em;
  padding: 0.35em 1.2em;
  font-size: 1em;
  margin-left: 1em;
}

/* icon overlay for smooth hover (avoid transitioning gradient -> color) */
.eexot-keydates-icon::after,
.feature-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.06);
  opacity: 0;
  transition: opacity var(--eexot-hover-duration) var(--eexot-ease);
  pointer-events: none;
}

.eexot-keydates-icon::after {
  background: rgba(255, 255, 255, 0.06);
}

.feature-icon::after {
  background: rgba(255, 255, 255, 0.06);
}

.eexot-badge-tba {
  background: var(--eexot-gradient);
  color: var(--eexot-mainColor);
  border: 2px dashed rgba(255, 255, 255, 0.12);
  font-weight: 700;
  border-radius: 2em;
  padding: 0.35em 1.2em;
  font-size: 1em;
  margin-left: 1em;
}

@media (max-width: 768px) {
  .eexot-keydates-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .eexot-badge-date,
  .eexot-badge-tba {
    align-self: flex-end;
    margin-left: 0;
    margin-top: 0.5em;
  }
}

/*Flip Card*/

.flip-card {
  perspective: 1000px;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 3 / 4;
  position: relative;
  margin-bottom: 20px;
}

.flip-card h3 {
  font-family: var(--eexot-mainFont);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.flip-card-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 2px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.flip-card-front h3,
.flip-card-back h3 {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
}

.flip-card-front {
  background: var(--eexot-gradient);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flip-card-back {
  background-image: url('../assets/img/main-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.profile-img {
  width: 70%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  border-radius: var(--eexot-radius);
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
}

.flag-icon {
  width: 56px;
  height: auto;
  margin-top: 4px;
  border-radius: 3px;
}

  /* Footer Stylings */
  .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}

.social-icons a {
  color: #fff;
  font-size: 2.5rem;
  transition: color 0.2s;
  text-align: center;
}

.social-icons a:hover {
  color: #ffd700; /* gold on hover, adjust as needed */
}