/* MOBILE ONLY */
/* @media (min-width: 768px) {
  body { display: none; }
} */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
}

/* HEADER */
.mobile-header {
  position: sticky;
  top: 0;
  z-index: 999;
  height: 64px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}

.logo img {
  height: 63px;
    margin-top: 5px;
    margin-left: -30px;
}

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp img {
  width: 26px;
}

/* HAMBURGER */
.hamburger {
  width: 24px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background:#FFCE26;;
  margin: 4px 0;
  transition: 0.3s;
}

/* CROSS ICON */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MENU */
.mobile-menu {
  position: fixed;
  top: 56px;               /* height of header */
  left: 0;
  width: 100vw;            /* always full screen width */
  /* height: calc(100dvh - 56px);  dynamic viewport height */
  background: #cfc4c4;
  display: flex;
  flex-direction: column;
  padding: 16px;
  box-sizing: border-box;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  z-index: 1;
}

.mobile-menu a {
  padding: 14px 8px;
  font-size: clamp(16px, 4vw, 18px);
  text-decoration: none;
  color: black;
}

.mobile-menu a:hover{
    background-color: black;
    color: white;
}

.mobile-menu.show {
  transform: translateX(0);
}

/* SLIDER */
.carousel {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.track {
  display: flex;
  transition: transform 0.8s ease;
}

.track img {
  width: 100%;
  flex: 0 0 100%;
}

.available-sites {
background-image: url("assets/availabeSites/bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px;
}

.available-sites h2 {
  text-align: center;
  color: gold;
  margin-bottom: 20px;
}

.available-sites-2{
    margin-top: 70px;
    background-image: url("assets/availabeSites/37128.jpg.webp");
}

.available-sites-2 h2 {
  text-align: center;
  color: gold;
  margin-bottom: 20px;
}

.sites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 boxes per row */
  gap: 15px;
}

.site-box {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #222;
  transition: all 0.3s ease;
}

.site-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.25);
  border-color: gold;
}



.stats-section {
  background: #000;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.stat-box h2 {
  color: gold;
  font-size: 42px;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 16px;
}

.stats-grid .stat-box:first-child {
  grid-column: span 2;
}

.tips h3 {
  color: gold;
  font-size: 26px;
  margin-bottom: 15px;
}

.tips p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 600px;
  margin: auto;
}


/* Footer */

.site-footer {
  background: #000;
  color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 15px;
}

.footer-top {
  text-align: center;
  border-bottom: 1px solid #333;
  padding-bottom: 25px;
}

.disclaimer {
  font-size: 14px;
  color: #ccc;
  margin: 10px 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  padding: 30px 0;
}

.footer-links h4 {
  color: gold;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
  font-size: 14px;
  color: #ccc;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}