body {
    margin: 0;
    font-family: jost;
    color: #222;
    font-family: cabin;
}

a{
    text-decoration: none;
    color: black;
}

/* TOP BAR */
.top-bar {
    background: #000;
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 14px;
}



/* HERO */
.hero {
    display: flex;
    align-items: center;
    padding: 60px 8%;
    gap: 100px;
    margin-top: 120px;
}

.hero-img{
    width: auto;
    height: 500px;
    border-radius: 10px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero-text span {
    font-weight: 500;
}

.hero-text p {
    margin-top: 15px;
    line-height: 1.6;
    width: 80%;
}

/* RELAX TITLE */
.relax-title {
    text-align: center;
    font-size: 40px;
    margin: 60px 0 20px;
}

/* CATEGORY CARDS */
.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 20px 8%;
    gap: 30px;
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card p {
    text-align: center;
    margin-top: 10px;
    font-size: 20px;
    font-weight: 700;
}

/* FOOTER */
.footer {
    background: transparent;
    padding: 60px 40px;
    margin-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #222;
}

.footer-logo {
    width: 120px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 14px;
    width: 260px;
}

/* FOOTER BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
}

.currency {
    margin-bottom: 10px;
    cursor: pointer;
}

.social-icons a {
    font-size: 24px;
    color: #000;
    margin: 0 10px;
}

.copy {
    margin: 15px 0;
    font-size: 14px;
}

.payments img {
    height: 30px;
    margin: 0 5px;
}

/* ==================== CSS ==================== */

/* Hamburger Button - Hidden on Desktop */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  padding: 8px;
  color: #333;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  max-width: 85%;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

/* Close Button */
.mobile-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 36px;
  cursor: pointer;
  color: #333;
  padding: 5px 10px;
  line-height: 1;
}

/* Mobile Navigation */
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 60px 20px 20px;
}

.mobile-nav a {
  padding: 15px 10px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  transition: background 0.2s ease;
}

.mobile-nav a:hover {
  background: #f5f5f5;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  /* Hide desktop navigation */
  .nav-left {
    display: none;
  }

  /* Show hamburger button */
  .hamburger {
    display: block;
  }
}


/* RESPONSIVE */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-img {
        width: 100%;
    }
    .hero-text p {
        width: 100%;
    }
    .categories {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}


@media (min-width: 901px) {
    .nav-left a {
        display: flex;
        justify-content: center;
        align-items: baseline;
        margin-left: 10px;
    }
  }

@media (max-width: 600px) {
    .categories {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
