/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* ================= COMMON ================= */
.container {
  width: 1240px;
  max-width: 90%;
  margin: auto;
}

.btn {
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
}

.logo {
  color: #ff6a6d;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 40px;
  font-weight: 600;
  color: gray;
}

.nav-menu li.active {
  color: #ff6a6d;
}

.btn-login {
  background: #ff6a6d;
  color: white;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ff6a6d;
  border-radius: 2px;
}

/* ================= HERO / BANNER ================= */
.hero {
  height: 100vh;
  background: url("./img/banner.png") top / cover no-repeat;
  display: flex;
  align-items: center;
  padding-left: 300px;
}

/* Content on top of hero image */
.hero-content {
  max-width: 480px;
}

.hero-content h1 {
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 17px;
  color: gray;
  line-height: 26px;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* Buttons */
.btn-primary {
  background: #ff6a6d;
  color: white;
  box-shadow: 0 0 15px rgba(255, 106, 109, 0.6);
}

.btn-outline {
  background: white;
  border: 1px solid #ff6a6d;
  color: #ff6a6d;
}

/* ================= WHY CHOOSE ================= */
.why-choose {
  padding: 100px 0;
  background: #ffffff;
  text-align: center;
}

/* ----- Section Header ----- */
.section-header {
  max-width: 650px;
  margin: 0 auto 70px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 14px;
  color: #9e9e9e;
  line-height: 22px;
}

/* ----- Features Layout ----- */
.features {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

/* ----- Feature Card ----- */
.feature-card {
  flex: 1;
  max-width: 300px;
  margin: auto;
}

.feature-card img {
  width: 120px;
  height: auto;
  margin-bottom: 25px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #9e9e9e;
  line-height: 22px;
}

/* ================= WHAT'S ON ================= */
.whats-on {
  position: relative;
  padding-top: 50px;
  background: #ffffff;
  overflow: hidden;
}

/* Decorative shape (top-right) */
.whats-on-left-shape {
  position: absolute;
  top: 50;
  left: 0;
  width: 150px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.whats-on-right-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

/* Main layout */
.whats-on-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 80px;
}

/* Left illustration */
.whats-on-image img {
  width: 100%;
  max-width: 450px;
}

/* Right content */
.whats-on-content {
  max-width: 550px;
}

.whats-on-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 35px;
}

/* Feature rows */
.whats-on-item {
  display: flex;
  align-items: start;
  gap: 15px;
  margin-bottom: 30px;
}

.check {
  color: #ff6a6d;
  font-weight: 700;
  margin-top: 3px;
  font-size: 20px;
}

.whats-on-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.whats-on-item p {
  font-size: 14px;
  color: #9e9e9e;
  line-height: 22px;
}

/* ================= FEATURED ARTICLE ================= */
.featured-article {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.article-wrapper {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  z-index: 1;
}

/* ---------- Left Content ---------- */
.article-content {
  max-width: 420px;
}

.article-author {
  font-size: 13px;
  color: #b0b0b0;
  display: block;
  margin-bottom: 12px;
}

.article-content h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}

.article-content p {
  font-size: 15px;
  color: #9e9e9e;
  line-height: 24px;
  margin-bottom: 22px;
}

.read-more {
  font-size: 14px;
  font-weight: 600;
  color: #6bc5f8;
  text-decoration: none;
}

/* ---------- Right Illustration ---------- */
.article-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
}

/* ================= FEATURED ARTICLE (ALT) ================= */
.featured-article {
  position: relative;
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
}

/* Decorative shapes */
.decor {
  position: absolute;
  pointer-events: none;
}

.decor-left {
  left: 0;
  top: 0;
  width: 120px;
}

.decor-right {
  right: 0;
  top: 0;
  width: 120px;
}

.decor-right-2 {
  right: 0;
  top: 5;
  width: 120px;
}

/* Layout */
.article-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  z-index: 1;
}

/* Image */
.article-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
}

/* Content */
.article-content {
  max-width: 520px;
}

.article-content h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.article-content p {
  font-size: 14px;
  color: #9e9e9e;
  line-height: 22px;
  margin-bottom: 18px;
}

.read-more {
  font-size: 14px;
  font-weight: 600;
  color: #6bc5f8;
  text-decoration: none;
}

/* ================= PRICING ================= */
.pricing {
  position: relative;
  padding: 200px 0 0 0;

  /* BACKGROUND IMAGE */
  background-image: url("./img/footer.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

/* Cards layout */
.pricing-wrapper {
  display: flex;
  justify-content: center;
  gap: 0;
  height: 380px;
}

/* Base card */
.price-card {
  background: #ffffff;
  width: 320px;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* Featured (middle) card */
.price-card.featured {
  transform: translateY(-30px);
  border-radius: 20px;
  height: 440px;
}

/* Badge */
.badge {
  position: absolute;
  top: 0;
  left: 50%;
  width: 320px;
  transform: translateX(-50%);
  background: #ff6a6d;
  color: white;
  padding: 20px 30px;
  font-size: 20px;
  border-radius: 20px 20px 0 0;
  font-weight: 700;
}

/* Feature list */
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  gap: 12px;
  align-items: start;
}

.price-features:nth-child(2) {
  padding-top: 50px;
}

.price-features img {
  width: 15px;
  margin-right: 8px;
}

.price-features li {
  font-size: 14px;
  color: #666;
  padding: 0;
  padding: 0;
}

/* Price */
.price {
  margin: 20px 0;
}

.currency {
  font-size: 20px;
  vertical-align: top;
}

.amount {
  font-size: 56px;
  font-weight: 700;
}

.duration {
  font-size: 14px;
  color: #999;
}

/* Billing text */
.billing {
  font-size: 13px;
  color: #999;
  margin-bottom: 35px;
}

/* Buttons */
.btn {
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-blue {
  background: #4fc3f7;
  color: white;
}

.btn-red {
  background: #ff6a6d;
  color: white;
  box-shadow: 0 10px 20px rgba(255, 106, 109, 0.4);
}

/* ================= FOOTER ================= */
.footer {
  padding: 250px 60px 0;
}

/* Rounded inner box */
.footer-box {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 60px 60px 0 0;
  padding: 80px 60px 40px;
}

/* Grid layout */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

/* Column heading */
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #4a4a4a;
}

/* Text */
.footer-col p,
.footer-col li {
  font-size: 13px;
  color: #6f8f99;
  line-height: 25px;
}

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

/* Copyright */
.copyright {
  text-align: center;
  font-size: 12px;
  color: #7faab6;
  margin-top: 60px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .navbar {
    background-color: rgba(0, 0, 0, 0.4);
  }

  .nav-wrapper {
    position: relative;
    padding: 18px 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 220px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .nav-wrapper:hover .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .btn-login {
    width: 100%;
    text-align: center;
  }

  .hero {
    position: relative;
    padding: 120px 20px 60px;
    align-items: flex-start;
    background-position: right top;
    height: 90vh;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
  }

  .hero-content {
    position: relative;
    z-index: 1;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-content h1 {
    color: white;
    font-size: 28px;
    -webkit-text-stroke: 0.2px #ff6a6d;
  }

  .hero-content p {
    color: wheat;
    font-size: 15px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .feature-card img {
    width: 80px;
  }

  .section-header {
    margin: 0;
  }

  .whats-on-wrapper,
  .features {
    flex-direction: column;
    text-align: center;
  }

  .whats-on-item {
    align-items: start;
    gap: 10px;
  }

  .whats-on-shape,
  .article-image {
    width: 250px;
  }

  .whats-on {
    padding: 0;
  }

  .hidden {
    display: none;
  }

  .featured-article,
  .featured-article {
    padding: 50px 0;
  }

  .article-content {
    width: 100%;
  }

  .article-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .decor-left,
  .decor-right {
    width: 120px;
  }

  .pricing-wrapper {
    flex-direction: column;
    gap: 30px;
    height: auto;
  }

  .price-card {
    width: 100%;
  }

  .badge {
    width: 100%;
  }

  .price-card.featured {
    transform: translateY(0);
  }

  .footer,
  .pricing,
  .why-choose {
    padding: 50px 0 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-box {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 50px 50px 0 0;
    padding: 80px 30px 40px;
  }

  .copyright {
    padding: 0;
    font-size: 12px;
    color: #7faab6;
    margin-top: 60px;
  }
}
