/* RESET & BASE */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #000;
  color: #FFA500;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  
}

.logo img {
  height: 60px;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #dba740;
}

/* Language switch buttons */
.lang-switch {
  display: flex;
  gap: 6px;
  margin-left: 20px;
}

.lang-btn {
  background: black;
  color: #dba740;
  border: 0.5px solid #dba740;
  padding: 4px 8px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: #dba740;
  color: black;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK OVERLAY */
.slide::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0);
  max-width: 90%;
  line-height: 1.4;
}

.caption h2 {
  font-size: 2.5rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #dba740; /* softer gold tone */
  margin: 0 0 15px 0;
}

.caption p {
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}


.learn-more {
  border: 1px solid #fff;
  background: none;
  color: white;
  padding: 8px 20px;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
	
}

.learn-more:hover {
  background: #dba740;
  color: black;
}
.intro-block {
  background: black;
  color: #dba740;
  text-align: center;
  padding: 60px 20px;
  font-family: 'Open Sans', sans-serif;
  max-width: 1000px;
  margin: 0 auto;
}

.intro-block h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  font-weight: 600;
}

.intro-block .intro-lead {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 25px;
  color: #dba740;
}

.intro-block p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-section {
  background-color: #000000;
  color: #dba740;
  padding: 60px 0 30px;
  font-family: 'Open Sans', sans-serif;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1;
  min-width: 280px;
}

.footer-left h4 {
  font-size: 13px;
  letter-spacing: 1px;
  color: #dba740;
  margin-bottom: 5px;
}

.gold-hr {
  border-top: 1px dotted #dba740;
  width: 85%;
  margin-bottom: 20px;
}

.footer-left p {
  font-size: 14px;
  color: #dba740;
  margin-bottom: 10px;
}

.footer-left a {
  color: #87a4c0;
  text-decoration: none;
}

.footer-middle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.footer-middle img {
    width: 180px;
    height: 70px;
}

.footer-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-right img {
  height: 160px;
  width: auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1a1a1a;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 13px;
  color: #dba740;
  flex-wrap: wrap;
}

.footer-social a {
  color: #dba740;
  margin-left: 20px;
  font-size: 14px;
}


/* WORLD MAP */
.world-map {
  padding: 80px 5% 60px;
  text-align: center;
  background: #000;
}

.world-map h2 {
  font-size: 2rem;
  color: #dba740;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 30px;
}

.map-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 1200px;
}

.world-map-image {
  width: 100%;
  height: auto;
  display: block;
}

.map-points-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-point {
  position: absolute;
  transform: translate(-50%, -50%);
  background: #dba740;
  border: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  z-index: 2;
}

.map-point .content {
  display: none;
  position: fixed; /* ✅ WAS absolute — FIXED */
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 12px 16px;
  max-width: 260px;
  border: 1px solid #dba740;
  top: 100px;   /* ✅ TEST: move far from overlap */
  left: 100px;
  text-align: left;
  z-index: 9999;
}

.map-point h3 {
  color: khaki;
  margin: 0 0 5px;
  font-size: 1em;
  font-family: 'Open Sans', sans-serif;
}

.map-point p {
  font-size: 0.85em;
  margin: 0;
}

.map-point:hover .content {
  display: block;
}

.lang-switch {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: 20px;
  margin-top: 0;
  padding-left: 10px;
}


.lang-btn {
  background: transparent;
  color: khaki;
  border: 0.5px solid #dba740;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: #dba740;
  color: #000;
}

.what-we-offer {
  background: #000;
  color: #dba740;
  text-align: center;
  padding: 60px 20px;
  font-family: 'Open Sans', sans-serif;
}

.what-we-offer h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.offer-item {
  background: transparent;
  color: #fff;
  padding: 20px;
}

.offer-item img {
  height: 80px;
  margin-bottom: 50px;
}

.offer-item h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  color: #dba740;
}

.offer-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #dba740;
  margin-bottom: 20px;
}

.offer-item button {
  border: 1px solid #fff;
  background: none;
  color: white;
  padding: 8px 20px;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.offer-item button:hover {
  background: #dba740;
  color: black;
}

.video-section {
  position: relative;
  width: 100%;
  height: 600px;
  background-color: black;
  text-align: center;
  color: #dba740;
  padding-top: 40px;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  height: 540px;
  margin: 0 auto;
  background-color: #000;
}

.video-thumbnail {
  background: url('../images/video.PNG') no-repeat center center / cover;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
  overflow: hidden;
}

.video-thumbnail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* adjust 0.4 for darkness */
  z-index: 1;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: url('https://img.icons8.com/ios-filled/100/ffffff/play--v1.png') no-repeat center center;
  background-size: contain;
  opacity: 0.8;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.video-title {
  font-size: 32px;
  margin-top: 20px;
  letter-spacing: 4px;
}

.video-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
}

.contact-section {
  background: #000;
  color: #e6c580;
  padding: 80px 20px;
  font-family: 'Lato', sans-serif;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
  border: 1px solid #444;
  border-radius: 8px;
}

.contact-container h2 {
  font-size: 1.8rem;
  color: #f2c060;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.contact-container p {
  text-align: center;
  margin-bottom: 30px;
  color: #ccc;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  color: #dba740;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background: #111;
  border: 1px solid #dba740;
  color: white;
  border-radius: 4px;
  font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: gold;
  outline: none;
}

.contact-btn {
  display: block;
  width: 100%;
  background: #dba740;
  color: black;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: #f5cd7b;
}

.form-message {
  margin-top: 20px;
  text-align: center;
  color: #dba740;
  font-size: 0.95rem;
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  background-color: #111;
  margin: auto;
  padding: 30px;
  border: 2px solid gold;
  width: 80%;
  max-width: 600px;
  color: white;
  font-family: 'Open Sans', sans-serif;
  border-radius: 10px;
  text-align: center;
}

.close-btn {
  color: #d4af37;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.login-section {
  max-width: 400px;
  margin: 60px auto;
  padding: 20px;
  background: #111;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  color: #fff;
}

.login-section input {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  background: #222;
  border: 1px solid #444;
  color: #fff;
  border-radius: 5px;
}

.login-section button {
  width: 100%;
  padding: 10px;
  background: #d4af37;
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.login-section button:hover {
  background: gold;
}

.message-box {
  margin-top: 10px;
  font-size: 0.9em;
}

.register-section {
  max-width: 500px;
  margin: 80px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.register-section h2 {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #d4af37;
}

.register-form {
  display: flex;
  flex-direction: column;
}

.register-form label {
  margin-top: 15px;
  font-size: 16px;
  color: #fff;
}

.register-form input {
  margin-top: 5px;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  border: none;
  background: #000;
  color: #fff;
  border: 1px solid #444;
}

.register-form input::placeholder {
  color: #999;
}

.register-form button {
  margin-top: 30px;
  padding: 12px;
  background-color: #d4af37;
  border: none;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.register-form button:hover {
  background-color: #d4af37;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-wrapper {
  flex: 1;
}

.media-page {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.tabs {
  text-align: center;
  margin-bottom: 20px;
}

.tab-button {
  padding: 10px 20px;
  margin: 0 10px;
  cursor: pointer;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 5px;
}

.tab-button.active {
  background: #d4af37;
  color: #000;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.media-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.media-item {
  width: 300px;
}

.media-item img {
  width: 100%;
  height: auto;
  display: block;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
}

.logo-slider {
  background: #000;
  overflow: hidden;
  padding: 40px 0;
}

.slider-track {
  display: flex;
  width: calc(250px * 14); /* Adjust based on number of logos */
  animation: scroll 60s linear infinite;
}

.slider-track img {
  width: 250px;
  height: auto;
  margin: 0 20px;
  filter: brightness(0.9);
  transition: transform 0.5s ease;
}

.slider-track img:hover {
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.static-banner img {
  width: 100%;
  display: block;
  max-height: 400px; /* adjust as needed */
  object-fit: cover;
}

.read-more-link {
  margin-left: 10px;
  font-style: normal;
  font-weight: 600;
  color: #caa452;
  text-decoration: underline;
}

.archive-block {
  background: black;
  color: #dba740;
  text-align: center;
  padding: 60px 20px;
  font-family: 'Open Sans', sans-serif;
  max-width: 1000px;
  margin: 0 auto;
}

.archive-block h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  font-weight: 600;
}

.archive-block .intro-lead {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 25px;
  color: #dba740;
}

.archive-block p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.archive-block a {
  color: #dba740; /* or white: #ffffff */
  text-decoration: none;
  font-style: italic;
  font-weight: 600;
}

.archive-block a:hover {
  color: #ffffff; /* or another hover color */
  text-decoration: underline;
}

/* === FRIENDS SLIDER FIX === */
.manual-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px auto;
}

.friends-slider {
  position: relative;
  width: 90%;
  max-width: 1000px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
  border: 2px solid #C79E22; /* Optional gold border */
}


.slide {
  display: none;
  position: relative;
  width: 100%;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

.caption {
  position: absolute;
  bottom: 50px;
  left: 30%;
  transform: translateX(-20%);
  
  color: #fff;
  padding: 15px 25px;
  font-size: 1.1rem;
  text-align: center;
  max-width: 90%;
  border-radius: 0px;
  box-shadow: 0 0 10px rgba(0,0,0,0);
}


.caption a {
  color: #FFD700;
  margin-left: 10px;
  text-decoration: underline;
}

.slider-controls {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.slider-controls button {
  background-color: #d4af37;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-controls button:hover {
  background-color: #555;
}

.slider-heading {
  text-align: center;
  font-family: 'Roboto', serif;
  font-size: 2.2rem;
  color: #C79E22;
  margin: 40px 0 20px;
  text-transform: lowercase;
  letter-spacing: 2px;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  padding: 15px 25px;
  text-align: center;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 5px 0;
  flex: 1 1 auto;
  text-align: left;
}

.cookie-banner a {
  color: #FFD700;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  background-color: #FFD700;
  color: black;
  border: none;
  padding: 8px 15px;
  font-size: 0.95rem;
  border-radius: 4px;
  cursor: pointer;
}

.cookie-banner.hidden {
  display: none;
}

/* ... [YOUR ORIGINAL CSS ABOVE THIS POINT, UNTOUCHED] ... */


/* === MOBILE NAVIGATION FIXES === */
@media (max-width: 768px) {
  #mobile-menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 999;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }

  nav ul.show {
    display: flex !important;
  }

  nav ul li {
    text-align: center;
    padding: 12px 0;
    font-size: 18px;
  }
}

/* === DESKTOP: FORCE HIDE HAMBURGER === */
@media (min-width: 769px) {
  #mobile-menu-toggle {
    display: none !important;
  }

  nav ul {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  nav ul li {
    padding: 0 10px;
  }
}

 
/* RESPONSIVE */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .carousel {
    max-height: 300px;
  }

  .slide img {
    max-height: 300px;
  }

  .caption {
    padding: 20px;
    max-width: 95%;
  }

  .caption h2 {
    font-size: 1.4rem;
  }

  .caption p {
    font-size: 0.9rem;
  }

  .logo img {
    height: 40px;
  }
	
	@media (max-width: 768px) {
  .slider-track img {
    width: 150px;
    margin: 0 10px;
  }
  
  @media (max-width: 768px) {
  #mobile-menu-toggle {
    display: block;
  }
}

}


