/* =============================
   The Pink Flamingo - style.css
   ============================= */

html {
  scroll-behavior: smooth;
}

/* ========== Variables ========= */
:root {
  --bright-pink: #feb5d0;
  --booksy-button-bg: #e15385d9;
  --deep-pink: #e15385;
  --soft-blue: #86c3fc;
  --sky-blue: #39bbff;
  --dark-bg-opacity: #1c1c2ed4;
  --dark-bg: #1c1c2e;
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

/* ========== Base Styles ========= */
body {
  margin: 0;
  font-family: var(--font-body);
  background-color: #fff;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  color: var(--deep-pink);

}

h2 {
  font-size: 2rem;
}

section {
  padding: 4rem 2rem;

}

.header {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  text-align: center;
  color: white;
  position: relative;
  padding: 12px 0;
  /* subtle black text stroke and neon glow */
  text-shadow:
    -1px -1px 0 #1c1c2e,
    1px -1px 0 #1c1c2e,
    -1px 1px 0 #1c1c2e,
    1px 1px 0 #1c1c2e,
    0 0 6px var(--bright-pink),
    0 0 12px var(--sky-blue);
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;
}

.full-width-bg-container {
  max-width: 1500px;
  margin: 0 auto;
}

.btn-primary {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--booksy-button-bg);
  border-radius: 24px;
  padding: 8px 25px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  box-shadow:
    0 6px 10px rgba(225, 83, 133, 0.6),
    inset 0 4px 6px rgba(255, 255, 255, 0.35);
  border: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: var(--deep-pink);

  box-shadow:
    0 6px 10px rgba(225, 83, 133, 0.6),
    inset 0 4px 6px rgba(255, 255, 255, 0.35);
  transform: scale(1.05);
}

.btn-secondary {
  background-color: var(--primary-blue);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-body);
  transition: background 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--accent-blue);
}

/* ========== Animations ========= */

.slide-in {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in.visible {
  opacity: 1;
  transform: none;
}

/* Base hidden state for fade + slide up and also does slide up fade out */
.slide-up-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.slide-up-fade.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Base hidden state for fade + slide from left to right */
.slide-left-fade {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.slide-left-fade.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-left-fade.outvisible {
  opacity: 0;
  transform: translateX(40px);
}

/* Fade In and Fade Out Animations */
.fade {
  opacity: 0;
  transition: opacity 0.8s ease;
  will-change: opacity;
}

.fade.visible {
  opacity: 1;
}

.fade.hidden {
  opacity: 0;
}







/* Optional Dark Mode - Commented Out */
/*
body.dark-mode {
  background-color: #121212;
  color: #eee;
}

.navbar.dark-mode {
  background-color: #000;
}
*/

/* ========== Navbar ========= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--dark-bg);
  color: #fff;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--bright-pink);
}

.logo img {
  max-width: 120px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--soft-blue);
}

#menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}



/* ========== Hero Section ========= */


/* Hero Section - Full viewport */
/* Hero Section - Full viewport */
.hero-section {
  position: relative;
  height: 75vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('images/room.jpeg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

/* Overlay for text readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent dark backdrop */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  /* Ensure content is above the overlay */
}

.hero-content h1 {
  font-size: 2rem;
  /* Adjust as needed */
  margin: 0;
  color: white;
  font-style: italic;
}

.hero-content .subtext {
  font-size: 1.5rem;
  /* Adjust as needed */
  margin: 0.5rem 0 1.5rem 0;
  font-style: italic;
}

.hero-content .btn-primary {
  font-style: italic;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transition: opacity var(--animation-duration) ease-out;
}

.fade-in.visible {
  opacity: 1;
}

/* ========== About Section ========= */

#about {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: auto;
}

.left {
  width: 100%;
  padding: 1rem;
}

.right {
  width: 100%;
  padding: 1rem;

}

#about .right {
  background-image: url(images/about-us.png);
  background-size: cover;
  background-position: right;
  height: 400px;
  box-shadow:
    0 0px 10px rgba(225, 83, 133, 0.6),
    inset 0 0px 6px rgba(255, 255, 255, 0.35);
  border-radius: 15px;
}





/* ========== Grid Section (Offerings Section) ========= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ================================
   Private Events
   ================================ */
#offerings h2 {
  text-align: center;
}

.private-events-section {
  background-color: var(--soft-blue);
  padding: 48px 24px;
  margin: 40px auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 32px;

}

.private-events-header {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--dark-bg);
  text-align: center;
  margin: 0;

}



.subheading {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  color: var(--dark-bg);
  margin-top: 2rem;
  user-select: none;
}

.description-text {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark-bg);
  text-align: center;
  margin: 2rem 0 0 0;
  user-select: none;
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.price-badge {
  background-color: var(--deep-pink);
  color: white;
  padding: 16px 28px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.5rem;
  min-width: 140px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(225, 83, 133, 0.4);
  user-select: none;
  flex-shrink: 0;
}

.discount-badge {
  background-color: var(--bright-pink);
  color: var(--deep-pink);
  padding: 16px 24px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  min-width: 180px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(254, 181, 208, 0.4);
  user-select: none;
  flex-shrink: 0;
}

.event-types-list {
  display: flex;
  justify-content: space-around;
  gap: 32px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
}

.event-type-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--dark-bg);
  font-weight: 600;
  font-size: 1rem;
  max-width: 140px;
  text-align: center;
  user-select: none;
}

.event-type-item .material-icons {
  font-size: 40px;
  color: var(--deep-pink);
  transition: color 0.3s ease;
}

.event-type-item:hover .material-icons {
  color: var(--bright-pink);
  cursor: default;
}

.info-text {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: var(--dark-bg);
  user-select: none;
  margin-top: 8px;
  line-height: 1.3;
}

.location-text {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  color: var(--dark-bg);
  user-select: none;
  margin: 0;
  line-height: 1.4;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.booksy-button {
  background-color: var(--booksy-button-bg);
  color: white;
  border: none;
  border-radius: 32px;
  padding: 18px 60px;
  font-weight: 700;
  font-size: 1.3rem;
  text-align: center;
  cursor: pointer;
  align-self: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  text-decoration: none;
  display: inline-block;
  min-width: 220px;
}

.booksy-button:hover,
.booksy-button:focus {
  background-color: var(--deep-pink);
  color: white;
  box-shadow: 0 0px 15px rgba(254, 181, 208, 0.7);
  outline: none;
}

.iframe-placeholder {
  background-color: #d0d9f9;
  color: var(--dark-bg);
  font-family: var(--font-body);
  border: 2px dashed var(--dark-bg);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  font-size: 1.1rem;
  user-select: none;
  max-width: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1);
  margin-top: 8px;
}

/* ================================
   Tournament Styles
   ================================ */
.tournament-section {

  flex: 1 1 580px;

  background: white;
  border-radius: 16px;
  padding: 24px;
  /*box-shadow: 0 8px 24px rgba(225, 83, 133, 0.15);*/
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: var(--dark-bg);
  user-select: none;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.tournament-card {
  background: white;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 24px rgba(225, 83, 133, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tournament-title {
  font-family: var(--font-heading);
  color: var(--deep-pink);
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0;
  text-transform: capitalize;
  letter-spacing: 0.05em;
}

.tournament-date {
  font-weight: 600;
  color: var(--dark-bg);
  font-size: 1rem;
  margin: 0;
}

.tournament-description {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-bg);
  line-height: 1.4;
  margin: 0;
}

.bracket-placeholder {
  margin: 8px auto;
  max-height: 250px;
  max-width: 250px;
  /*border: 2px solid var(--deep-pink);*/
  box-shadow:
    0 0px 10px rgba(225, 83, 133, 0.6),
    inset 0 0px 6px rgba(255, 255, 255, 0.35);
  border-radius: 16px;
  background: #fff0f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--deep-pink);
  font-weight: 600;
  text-align: center;

  overflow: hidden;
}

.bracket-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  display: block;
}

.view-brackets-button {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--booksy-button-bg);
  border-radius: 24px;
  padding: 14px 36px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  box-shadow:
    0 6px 10px rgba(225, 83, 133, 0.6),
    inset 0 4px 6px rgba(255, 255, 255, 0.35);
  border: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}

.view-brackets-button:hover,
.view-brackets-button:focus {
  background-color: var(--deep-pink);

  box-shadow:
    0 6px 10px rgba(225, 83, 133, 0.6),
    inset 0 4px 6px rgba(255, 255, 255, 0.35);
  transform: scale(1.05);
}

.view-brackets-button .material-icons {
  font-size: 36px;
  user-select: none;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
}

/* ================================
   Testimonials
   ================================ */


.testimonials {
  display: flex;
  gap: 24px;
  padding: 2rem;
  justify-content: center;
  background: #fafafa;
  flex-wrap: wrap;

}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem 1rem 2rem;
  box-shadow: 0 8px 24px rgba(225, 83, 133, 0.1);
  max-width: 320px;
  text-align: center;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  align-items: center;

  /* Transition for smooth effect */
  box-shadow: 0 12px 30px rgba(225, 83, 133, 0.2);
  /* Slightly increased shadow for hover */
  transition: transform 10s ease-in-out, box-shadow 10s ease-in-out !important;
  transform-origin: center;
  /* Set the origin for scaling */
}


.testimonial-image {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  object-fit: cover;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--dark-bg);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.testimonial-author {
  font-weight: 700;
  color: var(--deep-pink);
  font-size: 1.1rem;
}

.fade {
  opacity: 0;
  transition: opacity 0.8s ease;
  will-change: opacity;
}

.fade.visible {
  opacity: 1;
}





/* ================================
   FOOTER SECTION
   ================================ */
.footer-section {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 2rem 1rem;
  width: 100%;
  box-sizing: border-box;
}

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

.location-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.map-container,
.contact-info {
  flex: 1 1 450px;
  max-width: 560px;
}

.map-container {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(225, 83, 133, 0.7);
  min-height: 350px;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
  border-radius: 14px;
}

.contact-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 0 12px rgba(225, 83, 133, 0.7);
  color: var(--text-light);
  text-align: center;
  box-sizing: border-box;
}

.contact-info h2 {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: var(--bright-pink);
}

address {
  font-style: normal;
  color: white;
  line-height: 1.6;
}

.social-media {
  display: flex;
  gap: 16px;
  font-size: 1.8rem;
}

.social-media a {
  color: var(--bright-pink);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.social-media a:hover,
.social-media a:focus {
  color: var(--soft-blue);
  outline: none;
}

.social-media svg {
  stroke: currentColor;
  width: 24px;
  height: 24px;
}

.get-directions {
  display: inline-block;
  background: var(--soft-blue);
  color: var(--dark-bg);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.get-directions:hover,
.get-directions:focus {
  background: var(--deep-pink);
  color: var(--text-light);
  outline: none;
}

.copyright {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--bright-pink);
  font-family: 'Montserrat', sans-serif;
}



@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--dark-bg-opacity);
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    height: 100vh;
    padding: 1rem;

  }

  .nav-links.active {
    display: flex;
  }

  #menu-toggle {
    display: block;
  }

  .hero-content h1,
  .header {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.5rem;
  }



  .btn-primary {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
  }

  #about {
    flex-direction: column;

    margin: 0 auto;
  }

  #about .right {
    display: none;
  }

  #about h2 {
    text-align: center;
  }

  .tournament-section {
    overflow: hidden;

  }


  .location-container {
    display: flex;
    flex-direction: column;
    /* stack */
    align-items: center;
    /* key: enables horizontal centering */
    gap: 2rem;
  }

  .map-container,
  .contact-info {
    width: 90%;
    max-width: 700px;
    /* or 90% if you prefer */
    margin: 0 auto;
    flex: 0 0 auto;
    /* prevent flex stretching */
  }

}


@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text .subtext {
    font-size: 1.2rem;
  }

  .btn-primary {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
  }
}


@media (max-width: 480px) {
  .private-events-section {
    padding: 32px 16px;
  }

  .private-events-header {
    font-size: 2rem;
  }

  .pricing-container {
    flex-direction: column;
    gap: 16px;
  }

  .event-types-list {
    justify-content: center;
    gap: 24px;
  }

  .booksy-button {
    width: 100%;
    min-width: unset;
  }

  .location-text {
    max-width: 100%;
  }
}
