/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background-image: linear-gradient(#1f302a, black);
  color: #fff;
}

/* Header/Nav */
/* Reset default box sizing */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  background: #111;
  color: white;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: black;
  flex-wrap: wrap;
  position: relative;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.navbar-logo {
  width: 120px;
  height: 45px;
  background-image: url('../img/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}


/* Mobile Menu Toggle Button */
.menu-btn {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: none;
}

/* Hide actual checkbox */
.menu-toggle {
  display: none;
}

/* Nav Links */
.navbar-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem; /* More spacing between items */
  background-color: black; /* Optional: matches dark theme */
  padding: 1rem 0;
  font-family: 'Inter', sans-serif; /* Modern font */
}

.navbar-links a {
  position: relative;
  color: white; /* Changed from #99a29d to pure white */
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.navbar-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: #f0c749; /* Gold/yellow underline */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navbar-links a:hover {
  color: #f0c749; /* optional: matches line color */
}

.navbar-links a:hover::after {
  transform: scaleX(1);
}

/* Right Side */
.navbar-right {
  display: flex;
  align-items: center;
}


/* Right Side */
.navbar-right {
  display: flex;
  align-items: center;
}


.btn-login {
  background-color: black;
  color: white;
  border: 2px solid #00cc66; /* Green border */
  padding: 0.6rem 1.4rem;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background-color: #00cc66;
  color: black;
}

@media (min-width: 1101px) {
  .button-row {
    max-width: 1200px;
    margin: 4rem auto 2rem;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .cta {
    font-size: 1.6rem;
    padding: 12px 48px;
    box-shadow: 6px 6px 0 black;
  }

  .cta span:nth-child(2) {
    margin-left: 20px;
  }

  .cta.alt {
    font-size: 1.6rem;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero p {
    font-size: 1.15rem;
  }
}


/* --------- Responsive Rules --------- */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .navbar-links {
    flex-direction: column;
    width: 100%;
    display: none;
    background: black;
    padding: 1rem 2rem;
  }

  .navbar-right {
    display: none;
  }

  /* Toggle menu visibility when checkbox is checked */
  .menu-toggle:checked ~ .navbar-links {
    display: flex;
  }

  .menu-toggle:checked ~ .navbar-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1rem 2rem;
    background: black;
  }
}


    body {
      margin: 0;
      font-family: sans-serif;
      background: #000;
      color: white;
    }

    .hero {
      position: relative;
      width: 100%;
      height: 400px;
      overflow: hidden;
      border-radius: 25px;
    }
    
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('../img/bg.png');
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      transform: scale(1);
      transition: transform 2s ease, transform-origin 0.2s ease;
      z-index: 0;
    }

    .hero:hover .hero-bg {
      transform: scale(1.03);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      top: 50%;
      transform: translateY(-50%);
    }

    .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.1rem;
      color: #ccc;
    }
    /* Container to hold both buttons side by side */
    .button-row {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      margin-top: 2rem;
      flex-wrap: wrap;
    }
    
    /* Main button style (from your original code) */
    .cta {
      display: flex;
      padding: 10px 45px;
      text-decoration: none;
      font-family: 'Poppins', sans-serif;
      font-weight: 900;
      font-style: italic;
      font-size: 32px;
      color: white;
      background: black;
      transition: 0.6s;
      box-shadow: 6px 6px 0 black;
      transform: skewX(-15deg);
      border: 2px solid #00cc66; /* Green */
    }

    
    .cta span {
      transform: skewX(15deg);
    }
    
    .cta span:nth-child(2) {
      width: 20px;
      margin-left: 30px;
      position: relative;
      top: 12%;
      transition: 0.5s;
    }
    
    .cta:hover span:nth-child(2) {
      margin-right: 45px;
    }
    
    /* Hover Effects */
    .cta:hover {
      box-shadow: 10px 10px 0 #00cc66;
    }
    
    .cta:focus {
      outline: none;
    }
    
    /* Alt button variant */
    .cta.alt {
      background: #FBC638;
      color: black;
    }
    
    .cta.alt:hover {
      box-shadow: 10px 10px 0 #FBC638;
    }
    
    /* SVG paths */
    .cta path.one {
      transition: 0.4s;
      transform: translateX(-60%);
    }
    .cta path.two {
      transition: 0.5s;
      transform: translateX(-30%);
    }
    .cta:hover path.three {
      animation: color_anim 1s infinite 0.2s;
    }
    .cta:hover path.one {
      transform: translateX(0%);
      animation: color_anim 1s infinite 0.6s;
    }
    .cta:hover path.two {
      transform: translateX(0%);
      animation: color_anim 1s infinite 0.4s;
    }

    .cta.alt:hover path.three {
      animation: color_animm 1s infinite 0.2s;
    }
    .cta.alt:hover path.one {
      transform: translateX(0%);
      animation: color_animm 1s infinite 0.6s;
    }
    .cta.alt:hover path.two {
      transform: translateX(0%);
      animation: color_animm 1s infinite 0.4s;
    }
    
    @keyframes color_anim {
      0%, 100% { fill: white; }
      50% { fill: #00cc66; }
    }
    @keyframes color_animm {
      0%, 100% { fill: white; }
      50% { fill: #FBC638; }
    }


/* Responsive */
@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
  .navbar {
    flex-wrap: wrap;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-btn {
    font-size: 0.95rem;
  }
}
