/* ============================= */
/* GLOBAL RESET & FONT */
/* ============================= */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Playfair+Display:wght@700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  background: #fff7f2;
  color: #222;
  line-height: 1.6;
  font-size: 16px;
}

/* ============================= */
/* VARIABLES */
/* ============================= */
:root {
  --primary: #1f2933;
  --accent: #6c2bd9;
  --card: #ffffff;
}

/* ============================= */
/* HEADER */
/* ============================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  background: #fff;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
}

header .logo img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Navigation */
.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 6px 8px;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Hamburger */
.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ============================= */
/* HERO SECTION (FIXED) */
/* ============================= */

.hero-premium {
  text-align: center;
  padding: 90px 20px 70px;
  background: transparent;
}

.hero-premium .bismillah {
  display: block;
  font-size: 16px;
  margin-bottom: 18px;
  opacity: 0.8;
}

.hero-premium h1 {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  max-width: 820px;
  margin: 0 auto;
}

.hero-premium p {
  margin: 20px auto 0;
  font-size: 18px;
  max-width: 650px;
  color: #555;
}

.hero-btn {
  display: inline-block;
  margin-top: 35px;
  padding: 14px 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

.hero-btn:hover {
  opacity: 0.9;
}
/* ============================= */
/* SECTIONS / CARDS */
/* ============================= */
.section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  text-align: center;
  margin-bottom: 45px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.card {
  background: var(--card);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  margin-bottom: 10px;
}

.card a {
  display: inline-block;
  margin-top: 12px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}

/* ============================= */
/* NEWSLETTER */
/* ============================= */
.newsletter {
  text-align: center;
  padding: 70px 20px;
  background: #f9f7f3;
}

.newsletter h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.newsletter p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  max-width: 420px;
  margin: auto;
  background: white;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  outline: none;
}

.newsletter-form button {
  padding: 14px 22px;
  border: none;
  background: var(--accent);
  color: white;
  font-weight: bold;
  cursor: pointer;
}

/* ============================= */
/* FOOTER */
/* ============================= */
footer {
  background: #111;
  color: #eee;
  text-align: center;
  padding: 25px;
  font-size: 14px;
  margin-top: 60px;
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {

  /* Header */
  .menu-icon {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 55px;
    right: 10px;
    width: 180px;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }

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

  .nav-links a {
    font-size: 14px;
    padding: 10px 12px;
    white-space: nowrap;
  }

  /* Hero */
  .hero-premium {
    padding: 70px 16px 60px;
  }

  .hero-premium h1 {
    font-size: 30px;
  }

  .hero-premium p {
    font-size: 16px;
  }

  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
    border-radius: 16px;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    border-radius: 0;
  }
}

.hero-tagline {
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.8;
}



