/* ==============================
   GLOBAL STYLES
============================== */
:root {
  --yellow: #ffcc00;
  --pink: #ff6699;
  --sky: #87CEEB;
  --ink: #333;
  --white: #fff;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--sky);
  color: var(--ink);
  line-height: 1.6;
}

/* ==============================
   HEADER
============================== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--yellow), var(--pink));
  color: var(--white);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

.topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.logo {
  height: 56px;
  width: auto;
  border-radius: 10px;
}

.brand {
  font-family: 'Baloo 2', cursive;
  font-size: 1.9rem;
  margin: 0;
  flex: 1;
  text-align: center;
}

nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 8px 0 14px;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  border-radius: 10px;
  padding: 8px 12px;
  transition: background 0.2s ease;
}

nav a:hover,
nav a.active {
  background: rgba(255,255,255,0.18);
}

/* ==============================
   HERO SECTION
============================== */
.hero {
  background: url('https://images.unsplash.com/photo-1598899134739-24c46f58d3ae?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
  padding: 0 1rem;
}

.hero h1 {
  font-family: 'Baloo 2', cursive;
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.hero p {
  max-width: 640px;
  margin: 0 auto 24px;
  font-size: 1.1rem;
}

/* ==============================
   BUTTONS
============================== */
.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border-radius: 10px;
  padding: 12px 18px;
  transition: 0.2s ease;
}

.btn:hover {
  filter: brightness(0.95);
}

.btn.alt {
  background: var(--yellow);
  color: #000;
}

/* ==============================
   SECTIONS
============================== */
section {
  padding: 54px 0;
}

h2 {
  font-family: 'Baloo 2', cursive;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 16px;
}

.sub {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

/* ==============================
   GRID / CARDS
============================== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.card {
  background: #fff;
  border: 2px solid var(--yellow);
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  padding: 18px;
  text-align: center;
}

.card .media {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
  background: #f6f6f6;
  margin-bottom: 12px;
}

.card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card h3 {
  margin: 10px 0 6px;
}

.price {
  font-weight: 800;
}

/* ==============================
   FEATURES STRIP
============================== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.feat {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ==============================
   SOCIAL ICONS
============================== */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.social-icons a.facebook {
  background: #1877f2;
}
.social-icons a.instagram {
  background: #e1306c;
}
.social-icons a.tiktok {
  background: #000;
}

.social-icons img {
  height: 28px;
  width: 28px;
  filter: invert(1);
}

.social-icons a:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* ==============================
   TESTIMONIALS
============================== */
.testis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

blockquote {
  background: #fff;
  border-left: 6px solid var(--pink);
  border-radius: 12px;
  padding: 16px;
  margin: 0;
}

blockquote footer {
  margin-top: 10px;
  font-weight: 800;
}

/* ==============================
   FAQ / DETAILS
============================== */
details {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  margin: 10px 0;
  border: 1px solid #eee;
}

summary {
  font-weight: 800;
  cursor: pointer;
}

/* ==============================
   CONTACT FORM
============================== */
form {
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input, textarea, button {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

button {
  background: var(--yellow);
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

button:hover {
  background: var(--pink);
  color: #fff;
}

/* ==============================
   FOOTER
============================== */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 26px;
  margin-top: 40px;
}

/* ==============================
   RESPONSIVE DESIGN
============================== */
@media (max-width: 600px) {
  .brand {
    font-size: 1.4rem;
  }

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

  .hero p {
    font-size: 1rem;
    padding: 0 12px;
  }

  section {
    padding: 36px 0;
  }
}


