/* ===== GLOBAL STYLING ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  color: #333;
  line-height: 1.6;
  padding-top: 80px; /* for fixed navbar */
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  z-index: 1000;
  transition: top 0.3s ease-in-out;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.2rem;
}

header .logo img {
  width: 50px;
  height: auto;
}

header nav {
  display: flex;
  gap: 2rem;
}

header nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s;
}

header nav a:hover {
  color: #00aaff;
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links.active {
  display: flex;
}

/* ===== HERO SECTION ===== */
.hero {
  max-width: 1200px;
  margin: auto;
  padding: 6rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.forever {
  display: block;
  font-size: 2.5rem;
  font-weight: 600;
  color: #00aaff;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 450px;
}

.btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  border: none;
  border-radius: 6px;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: #00aaff;
  color: #fff;
}

.btn-primary:hover {
  background: #008ecc;
}

.btn-secondary {
  background: #f1f1f1;
  color: #333;
}

.btn-secondary:hover {
  background: #ddd;
}

.hero-img {
  flex: 1;
}

.hero-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* ===== FEATURES / CARDS ===== */
.features {
  background: #f9f9f9;
  text-align: center;
  padding: 5rem 2rem;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.features p {
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: left;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: #00aaff;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* ===== CONTACT ===== */
.contact {
  background: #fff;
  padding: 5rem 2rem;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: auto;
}

.contact-box {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-box h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-box p {
  font-size: 0.95rem;
  margin: 0.5rem 0;
}

.contact-box a {
  text-decoration: none;
  color: #00aaff;
  font-weight: 500;
}

.contact-box a:hover {
  text-decoration: underline;
}

.btn-instagram,
.btn-tiktok {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.9rem 2.5rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}

.btn-instagram {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.btn-tiktok {
  background: linear-gradient(45deg, #69C9D0, #EE1D52, #010101);
}

.btn-instagram:hover,
.btn-tiktok:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* ===== FOOTER ===== */
footer {
  background: #f9f9f9;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

footer .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

footer nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

footer nav a {
  text-decoration: none;
  color: #555;
}

footer nav a:hover {
  color: #00aaff;
}

/* ===== MEDIA QUERIES ===== */

/* Tablets */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .contact-boxes {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  header nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  header nav.active {
    display: flex;
  }

  header nav a {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .forever {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .hero-img img {
    max-width: 300px;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}
