/* Reset */
* {
  box-sizing: border-box;
}
/* HTML scroll-behavior */
.html{
    scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #111;
}




/* ################################  HEADER  STYLING  ###################### */



header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px;
  background-color: white;
  border-bottom: 2px solid #000000;
  position: relative;
  flex-wrap: wrap; 
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 1000; 
  background-color: #ffffff;
}

/* Logo Container */

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

/* Logo Image */

.logo img {
  height: 80px;
  width: auto;
}

/* Text on the right side of Logo Image */

.logo span {
  font-family: 'Italianno','Pacifico', cursive;
  font-size: 2.1rem;
  font-weight: bold;
  color: #000;
  letter-spacing: 1px;
  white-space: nowrap;
}


/* Horizontal menu styling */

.horizontal-menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.horizontal-menu ul li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.7s ease;
}

.horizontal-menu ul li a:hover {
  color: #ffffff;
  background-color: rgb(0, 0, 0);
  border-radius: 5px;
  padding: 10px 10px;
}









/* Languages menu styling */

/* Header language toggle button */


/* Language toggle button */
.header-lang-toggle {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #f5f5f5;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  margin-left: 15px;
}

.header-lang-toggle:hover {
  background: #111;
}

.header-lang-toggle i {
  color: #111;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.header-lang-toggle:hover i {
  color: #fff;
}

/* Dropdown menu exactly like main dropdown */
.header-lang-options {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;       /* hidden by default */
  flex-direction: column;
  background: white;
  border: 1px solid #000;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(13, 19, 45, 0.1);
  width: 220px;
  z-index: 1000;
  user-select: none;
  padding: 15px 0;
}

.header-lang-options ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-lang-options ul li {
  padding: 10px 20px;
}

.header-lang-options .lang-btn {
  position: relative;
  padding: 10px 20px;
  width: 100%;
  color: rgb(0, 0, 0);
  font-weight: bold;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.header-lang-options .lang-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: rgb(13, 19, 45);
  opacity: 0.9;
  transition: width 0.3s ease;
  z-index: -1;
  border-radius: 4px;
}

.header-lang-options .lang-btn:hover::before,
.header-lang-options .lang-btn:focus::before {
  width: 100%;
}

.header-lang-options .lang-btn:hover,
.header-lang-options .lang-btn:focus {
  color: white;
}

/* Show dropdown when active */
.header-lang-toggle.active .header-lang-options {
  display: flex;
  flex-direction: column;
}


/* ==================== Header Language Dropdown for Small Screens ==================== */
@media (max-width: 768px) {
  .header-lang-options {
    position: absolute; 
    top: 100%;          
    left: 0;
    width: 100%;      
    border: none;
    box-shadow: none;
    padding: 10px 0;
    flex-direction: column;
    background: white;
    display: none;    
    z-index: 1000;
  }

  .header-lang-options ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .header-lang-options ul li {
    padding: 12px 30px; 
  }

  /* Show dropdown when toggle active */
  .header-lang-toggle.active .header-lang-options {
    display: flex;
  }
}










/* Hamburger icon Styling: (icon always visible) */

.nav-icon {
  width: 30px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
}

.nav-icon div {
  height: 4px;
  background-color: black;
  border-radius: 2px;
}

/* Dropdown menu Styling - hidden by default */

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 50px;
  background: white;
  border: 1px solid #000000;
  box-shadow: 0 4px 8px rgba(13, 19, 45, 0.1);
  width: 220px;
  padding: 15px 0;
  display: none;
  flex-direction: column;
  z-index: 1000;
  border-radius: 5px;
  user-select: none;
}

.dropdown-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-menu ul li {
  padding: 10px 20px;
}

.dropdown-menu ul li a {
  position: relative;
  padding: 10px 20px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
  overflow: hidden;
}

.dropdown-menu ul li a:hover,
.dropdown-menu ul li a:focus {
  color: white;
  outline: none;
}

/* A sliding highlight bar in dropdown-menu */

.dropdown-menu ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: rgb(13, 19, 45);
  opacity: 0.9;
  transition: width 0.3s ease;
  z-index: -1;
  border-radius: 4px;
}

/* Animating highlight bar on hover/focus */
.dropdown-menu ul li a:hover::before,
.dropdown-menu ul li a:focus::before {
  width: 100%;
}


/* Showing dropdown when active */
.dropdown-menu.active {
  display: flex;
}


/* =========================================================================== */
/* =========================================================================== */


/* Responsive Design adjustments */

@media (max-width: 768px) {
  /* Hiding horizontal menu on small screens */
  .horizontal-menu {
    display: none;
  }

  /* Dropdown menu - position fixed full width below header */
  .dropdown-menu {
    position: static;
    width: 100%;
    border: none;
    box-shadow: none;
    padding: 10px 0;
  }

  .dropdown-menu ul li {
    padding: 12px 30px;
  }

  /* Make header flex wrap so logo + hamburger stack nicely */
  header {
    padding: 15px 30px;
  }
}

@media (max-width: 768px) {
  .logo span {
    display: none;
  }
}









/* ################################  SLIDESHOW     SECTION  STYLING  ###################### */






/* ===================== Slideshow Container ===================== */
.slideshow-container {
  width: 100vw;
  max-width: 100%;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

/* ===================== Slides ===================== */
.mySlides {
  position: relative;
  display: none;
}

.mySlides img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===================== Overlay Dimming ===================== */
.mySlides::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
  pointer-events: none;
}

.mySlides.active::before {
  opacity: 1;
}

/* ===================== Overlay Text ===================== */
.overlay-text {
  font-family: "Be Vietnam Pro", sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.3rem;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  max-width: 90vw;
  z-index: 2;
  transition: opacity 1s ease, font-size 0.3s ease;
}

.mySlides.active .overlay-text {
  opacity: 1;
}

/* ===================== Navigation Buttons ===================== */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 3;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* ===================== Fade Animation ===================== */
.fade {
  position: relative;
  display: none;
}

/* ===================== Responsive Overlay Text ===================== */
@media (max-width: 1200px) {
  .overlay-text {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .overlay-text {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .overlay-text {
    font-size: 1.4rem;
    max-width: 95vw;
  }
}

@media (max-width: 480px) {
  .overlay-text {
    font-size: 1.1rem;
    max-width: 95vw;
  }
}








/* ################################  'OUR VALUES'    SECTION  STYLING  ###################### */





.spacer-1 {
  position: relative;
  background-color: rgb(13, 19, 45);
  padding: 50px 20px; /* slightly more padding */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 100px; /* a bit more gap between value items */
  color: white;
}

.main-header {
  flex-basis: 100%;
  text-align: center;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 40px; 
  color: white;
}

.spacer-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: white;
  box-shadow: 0 0 15px white;
  z-index: 1;
}

.value {
  width: 180px;
  text-align: center;
  cursor: default;
  margin-bottom: 25px; 
}

.value img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid white;
  margin-bottom: 15px;
  object-fit: contain;
}

.value h4 {
  font-family: 'Italianno','Pacifico', cursive;
  font-size: 1.2rem;
  margin: 0 0 10px 0;
  letter-spacing: 2px;
  font-weight: 700;
  color: white;
  transition: 0.6s ease-in-out;
  position: relative;
  display: inline-block;
  cursor: default;
}

.value h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.4s ease-in-out;
}

.value h4:hover::after {
  width: 100%;
}

.value p {
  font-family: "Be Vietnam Pro";
  font-size: 1rem;
  line-height: 1.6; 
  margin: 0;
  color: #ccc;
  margin-bottom: 20px; 
}

@media (max-width: 900px) {
  .spacer-1 {
    gap: 50px;
    padding: 40px 15px;
  }

  .main-header {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .value {
    width: 140px;
    margin-bottom: 20px;
  }

  .value img {
    width: 30px;
    height: 30px;
  }

  .value h4 {
    font-size: 1.1rem;
  }

  .value p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
}

@media (max-width: 500px) {
  .spacer-1 {
    flex-direction: column;
    gap: 25px;
    padding: 25px 10px;
  }

  .value {
    width: 100%;
  }
}












/* ################################  OVERVIEW  SECTION        STYLING  ###################### */








/* overview section content container */

.overview-section {
  margin: auto;

}

/* Individual overview block */
.overview-block {
  display: flex;
  flex: 1 1 45%;
  box-sizing: border-box;
  align-items: stretch;
  gap: 20px;
  padding: 60px 30px;
  background-color: #fff;
  border-radius: 1px;
  overflow: hidden;
  position: relative;
  border-top: 3px solid white;
}

/* Glow effect above overview block */
.overview-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: white;
  box-shadow: 0 0 15px white;
  z-index: 1;
}

/* Individual overview block (Reversed elements placement order) */
.overview-block.reverse {
  flex-direction: row-reverse;
  background-color: rgb(13, 19, 45);
}

/* Image container and zoom */
.image {
  flex: 1;
  display: flex;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 1s ease-in-out; /* Fixed missing 's' */
}

.image img:hover {
  transform: scale(1.05);
}


/* Individual overview block Text styling (Default Styling - for white bg sections) */
.text, .text-2s {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #0f0f0f;
}

.text h3, .text-2s h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: inherit;
}

.text p, .text-2s p {
  margin-bottom: 50px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: inherit;
}

/* Buttons style */
.text button, .text-2s button {
  align-self: flex-start;
  padding: 12px 24px;
  background-color: #ffffff;
  border-width: 2px;
  border-radius: 50px;
  color: rgb(0, 0, 0);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.text button:hover, .text-2s button:hover {
  background-color: #000000;
  color:white;
  transform: translateY(-2px);
}



/* Individual overview block Text styling adjustments for buttons and text ( for  DEEP NAVY background   blocks) */

.overview-block.reverse .text,
.overview-block.reverse .text-2s {
  color: #f0f0f0;
}

.overview-block.reverse .text button,
.overview-block.reverse .text-2s button {
  background-color: #000000; 
  color:white;
}

.overview-block.reverse .text button:hover,
.overview-block.reverse .text-2s button:hover {
  background-color: #fafafa;
  color:black;
  transform: translateY(-2px);
}



/* =========================================================================== */
/* =========================================================================== */


/* Responsive Design Adjustments */

@media (max-width: 768px) {
  .overview-block, .overview-block.reverse {
    flex-direction: column !important;
    flex: 1 1 100%;
    text-align: center;
  }

  .text, .text-2s {
    padding: 20px;
  }

  .text button, .text-2s button {
    align-self: center;
    width: auto;
  }
}










/* ################################  CONTACTS  SECTION        STYLING  ###################### */








/* Contacts Section*/

.contacts-section {
  display: flex;
  color: white;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 2px solid #fafafa;
  min-height: 600px;
  background-color: white;
}

/* Contacts Section RIGHT and LEFT Parts*/

.contacts-left, .contacts-right {
  flex: 1 1 50%;
  min-width: 300px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;     
  padding: 40px;
  height: 100%;
}


/* Contacts Section LEFT Part | Contains: (Poster ; quote ; social icons) */

.contacts-left {
  background-color: white;
  color: black;
  text-align: center;
}


/* Contacts Section RIGHT Part | Contains: (Contact Form) */

.contacts-right {
  background-color: black;
  color: white;
  text-align: center;
}


/* Contacts Section LEFT Part -  Poster*/
.contacts-image {
  width: 350px;
  height: 350px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 20px;
  margin-top: 105px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.7);
}

/* Contacts Section LEFT Part - Quote*/
.gym-quote {
  font-style: italic;
  font-size: 1.7rem;
  margin-bottom: 50px;
  color: #070505;
  border-left: 4px solid #000000;
  padding-left: 5px;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}

/* Contacts Section LEFT Part - Social Icons*/
.social-icons {
  display: flex;
  justify-content: center;
  gap: 90px;
  margin-top: 120px;
  margin-bottom: 100px;
}

.social-icons a {
  font-weight: 700;
  color: #08090a;
  text-decoration: none;
  font-size: 1.6rem;
  padding: 10px; 
  border: 2px solid transparent; 
  border-radius: 5px;
  transition: all 0.5s ease-in-out; 
}

.social-icons a:hover {
  color: #ffffff;
  background-color: black;
  border-color: white; 
}



/* Contacts Section RIGHT Part - Contact Form*/

form {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.contacts-right h3 {
  font-family: "Be Vietnam Pro";
  font-size: 2rem;
  margin-bottom: 40px;
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 400;
  font-size: 0.8rem;
}

form input, form textarea {
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 20px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
}

form textarea {
  resize: vertical;
}

.agreement {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #ffffff;
  margin-top: 40px;
}

.agreement input[type="checkbox"] {
  margin-right: 0px;
}


/* Honeypot field */
.honeypot {
  display: none;
}


/* Emoji captcha */
.emoji-captcha {
  margin-bottom: 25px;
  font-size: 1rem;
  text-align: center;
  color: white;
}

.emoji-captcha p {
  margin-bottom: 12px;
  font-weight: 500;
}

.emoji-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 2rem;
}

.emoji-options span {
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
}

.emoji-options span:hover {
  transform: scale(1.2);
  background-color: rgba(255, 255, 255, 0.1);
}

.emoji-options span.selected {
  background-color: rgba(255, 255, 255, 0.2);
  outline: 2px solid white;
  transform: scale(1.15);
}

form button {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  outline: 2px solid rgb(0, 0, 0);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 1.5rem;
}

form button:hover {
  background-color: #000000;
  color:#ffffff;
  outline: 2px solid rgb(255, 255, 255);
}



/* =========================================================================== */
/* =========================================================================== */


/* Responsive Adjustments */

@media (max-width: 900px) {
  .contacts-section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .contacts-left, .contacts-right {
    max-width: 100%;
    flex: 1 1 100%;
    padding: 20px;
  }

  .contacts-image {
    margin-bottom: 20px;
  }

  form {
    max-width: 100%;
  }
}


@media (max-width: 900px) {
  .contacts-image {
    width: 80%;       
    max-width: 300px; 
    height: auto;     
    margin-top: 50px; 
  }
}


@media (max-width: 768px) {
  .social-icons {
    gap: 30px; 
    flex-wrap: wrap;
  }

  .social-icons a {
    font-size: 1.4rem; 
    padding: 8px;
  }
}













/* ################################     FOOTER       STYLING  ###################### */






footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 5%; 
  background-color: #f8f8f8;
  color: rgb(0, 0, 0);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 1rem;
  border-top: 2px solid black;
  flex-wrap: wrap; 
}

.footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Contact links styling */
.left-contact, .right-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 4px;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
  cursor: pointer;
  flex-shrink: 0; 
}

/* Hover effects */
.left-contact:hover, .right-contact:hover {
  background-color: rgb(13, 19, 45);
  color: #f0f0f0;
}

.left-contact:hover i, .right-contact:hover i {
  color: #f0f0f0;
}

/* Footer headings */
footer h5 {
  margin: 0;
  font-weight: 400;
  font-size: 1rem;
}

/* RESPONSIVE: For screens smaller than 768px */
@media (max-width: 768px) {
  .lang-toggle {
    display: none;
  }
}

