@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  height: 100%;
  overflow: hidden;
  background: #000;
}

/* =========================
   MAIN SCROLL AREA
========================= */
main {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

/* =========================
   HEADER
========================= */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  z-index: 1000;
}

.header-container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 600;
  white-space: nowrap;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

/* =========================
   HAMBURGER MENU
========================= */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  right: 15px;
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.mobile-nav a {
  margin: 10px 0;
  text-decoration: none;
  color: black;
  font-weight: 500;
}

/* =========================
   HOME SLIDES
========================= */
.slide {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

/* HOME OVERLAY BOX */
.overlay {
  position: relative;
  color: white;
  text-align: center;

  padding: 55px 70px;
  border-radius: 22px;

  background: rgba(0,0,0,0.35);

  max-width: 780px;
}

.overlay h1 {
  font-size: 4rem;
  font-weight: 700;
}

.overlay p {
  font-size: 1.4rem;
  margin-top: 10px;
}

/* BUTTON */
.button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 26px;
  background: white;
  color: black;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.2s;
}

.button:hover {
  transform: scale(1.05);
}

/* =========================
   PAGE LAYOUT (PRICING / CONTACT)
========================= */
.page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.page-content {
  background: rgba(0,0,0,0.45);
  color: white;

  padding: 70px 60px;
  border-radius: 25px;

  text-align: center;

  min-width: 420px;
  max-width: 850px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.page-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* =========================
   PRICING / INFO CARDS
========================= */
.card {
  background: white;
  color: black;

  padding: 30px 40px;
  margin-top: 20px;

  border-radius: 15px;

  min-width: 340px;
  font-size: 1.2rem;

  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: 0.2s;
}

.card:hover {
  transform: translateY(-3px);
}

/* =========================
   MOBILE MENU
========================= */
@media (max-width: 768px) {

  nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .overlay {
    padding: 30px 20px;
    max-width: 92%;
  }

  .overlay h1 {
    font-size: 2.6rem;
  }

  .overlay p {
    font-size: 1rem;
  }

  .page-content {
    width: 90%;
    padding: 40px 20px;
    min-width: unset;
  }

  .card {
    min-width: 90%;
    padding: 20px;
  }
}

/* =========================
   SCROLLBAR (HIDDEN)
========================= */
main::-webkit-scrollbar {
  display: none;
}