/* -------------------------------------------------
   GLOBAL THEME — Chaii Scoop
   ------------------------------------------------- */
:root {
  --brand-red: #8c1a1f;
  --dark: #221f1f;
  --light: #ffffff;
  --beige: #f9f5f3;
  --shadow: rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--beige);
  color: var(--dark);
  line-height: 1.6;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* -------------------------------------------------
   NAVBAR
   ------------------------------------------------- */
.navbar {
  background: #ffffff;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 3px 6px var(--shadow);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  height: 40px;
}

.logo img {
  max-height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  font-size: 0.98rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-red);
  border-color: var(--brand-red);
}

/* -------------------------------------------------
   GLOBAL BUTTONS
   ------------------------------------------------- */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--brand-red);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background-color: #a91d23;
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background-color: #fff;
  color: var(--brand-red);
}

/* -------------------------------------------------
   SECTION BACKGROUNDS & SPACING
   ------------------------------------------------- */
.section {
  padding: 80px 0;
}

.section-white {
  background: #ffffff;
}

.section-cream {
  background: #fff7f3;
}

.section-lightpink {
  background: #ffeceb;
}

.section-red {
  background: var(--brand-red);
  color: #ffffff;
}

.section-title {
  text-align: center;
  color: var(--brand-red);
  font-size: 2rem;
  margin-bottom: 30px;
}

/* -------------------------------------------------
   HERO – HOMEPAGE
   ------------------------------------------------- */
.hero-new {
  background:
    linear-gradient(135deg, #8c1a1fb0, #00000088),
    url("assets/hero banner.jpg") center/cover no-repeat;
  color: #fff;
  min-height: 90vh;
  padding: 160px 20px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.hero-new h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

.hero-sub {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 15px auto 30px;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* -------------------------------------------------
   HOMEPAGE – FLAVOURS
   ------------------------------------------------- */
.flavor-section h2 {
  margin-bottom: 10px;
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.flavor-card {
  padding: 35px 25px;
  border-radius: 20px;
  color: #222;
  text-align: center;
  position: relative;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.flavor-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--dark);
}

/* Flavor gradients */
.flavor-card.peach {
  background: linear-gradient(145deg, #ffe1d0, #ffd0be);
}
.flavor-card.green {
  background: linear-gradient(145deg, #d8f5d8, #bbeabb);
}
.flavor-card.chai {
  background: linear-gradient(145deg, #f5d6c1, #eec8b0);
}

.flavor-card .tag {
  background: var(--brand-red);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  color: #fff;
  position: absolute;
  top: 12px;
  right: 12px;
}

/* -------------------------------------------------
   HOMEPAGE – ABOUT PREVIEW
   ------------------------------------------------- */
.about-preview {
  text-align: center;
}

.about-box {
  background: #fff5f5;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  max-width: 700px;
  margin: 0 auto;
}

.about-box h2 {
  margin-bottom: 12px;
}

.btn-link {
  color: var(--brand-red);
  font-weight: 600;
  text-decoration: none;
  margin-top: 15px;
  display: inline-block;
}
.btn-link:hover {
  text-decoration: underline;
}

/* -------------------------------------------------
   HOMEPAGE – TESTIMONIAL SNAPSHOT
   ------------------------------------------------- */
.homepage-testimonials {
  text-align: center;
}

.homepage-testimonials h2 {
  color: var(--brand-red);
  font-size: 2rem;
  margin-bottom: 30px;
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.homepage-testimonials .t-card {
  background: #fff5f5;
  padding: 25px 22px;
  border-radius: 15px;
  max-width: 320px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.homepage-testimonials .t-card p {
  font-style: italic;
  margin-bottom: 10px;
  color: #5a1a1f;
}

.homepage-testimonials .t-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-red);
}

/* -------------------------------------------------
   PAGE HEADERS
   ------------------------------------------------- */
.page-header {
  background: linear-gradient(135deg, var(--brand-red), var(--dark));
  color: #fff;
  text-align: center;
  padding: 120px 20px 80px;
  margin-top: 70px;
  box-shadow: 0 4px 8px var(--shadow);
}

.page-header h2 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* -------------------------------------------------
   ABOUT PAGE – LEFT/RIGHT LAYOUT
   ------------------------------------------------- */
.about-row {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 0;
}

.about-row.reverse {
  flex-direction: row-reverse;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  object-fit: cover;
}

.about-text {
  flex: 1.1;
}

.about-text h3 {
  color: var(--brand-red);
  margin-bottom: 15px;
  font-size: 2rem;
}

.about-text p {
  margin-bottom: 10px;
}

.about-list {
  list-style: none;
  margin-top: 15px;
}

.about-list li {
  margin-bottom: 6px;
  font-size: 0.95rem;
  padding-left: 18px;
  position: relative;
}

.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-red);
  font-size: 0.8rem;
}

/* Optional founders styles */
.founder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.founder-card {
  background: #fff5f5;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 14px rgba(0,0,0,0.1);
}

.founder-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--brand-red);
}

/* -------------------------------------------------
   MENU PAGE
   ------------------------------------------------- */
.menu-intro {
  text-align: center;
  margin-bottom: 10px;
}

.menu-intro p {
  max-width: 650px;
  margin: 0 auto 20px;
}

.menu-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.menu-tags span {
  background: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  border: 1px solid #f0dcdc;
}

/* illustration under tags */
.menu-illustration-section {
  background: #ffffff;
  text-align: center;
  padding: 20px 0 10px;
}

.menu-illustration-img {
  max-width: 260px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.12));
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.menu-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  border: 1px solid #f0dcdc;
  box-shadow: 0 5px 16px rgba(0,0,0,0.08);
  position: relative;
}

.menu-card h3 {
  color: var(--brand-red);
  margin-bottom: 10px;
}

/* Menu flavour tints */
.flavor-peach {
  background: linear-gradient(145deg, #ffe5d3, #ffe0cb);
}
.flavor-green {
  background: linear-gradient(145deg, #d7f5d7, #c5ecc5);
}
.flavor-chai {
  background: linear-gradient(145deg, #f5d9c4, #f0cbb3);
}

.menu-card .tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--brand-red);
  color: #fff;
  padding: 5px 10px;
  font-size: 0.75rem;
  border-radius: 5px;
}

.menu-note {
  text-align: center;
}

.menu-note p {
  max-width: 600px;
  margin: 0 auto 20px;
}

/* -------------------------------------------------
   TESTIMONIALS PAGE
   ------------------------------------------------- */
.testimonials-page {
  padding-top: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.testimonials-page .testimonial-card {
  background-color: #fff5f5;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.testimonials-page .testimonial-card p {
  font-style: italic;
  color: #5a1a1f;
  margin-bottom: 10px;
}

.testimonials-page .testimonial-card h4 {
  color: var(--brand-red);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Gallery */
.gallery h3 {
  color: var(--brand-red);
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* CTA - inside section-red */
.cta {
  text-align: center;
}

.cta h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.4;
}

.cta .btn-primary {
  padding: 16px 50px;
  font-size: 1.2rem;
  background-color: #fff;
  color: var(--brand-red);
  border-radius: 50px;
}

.cta .btn-primary:hover {
  background-color: #ffecec;
  transform: scale(1.05);
}

/* -------------------------------------------------
   CONTACT PAGE
   ------------------------------------------------- */
.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 3px 10px var(--shadow);
}

.contact-form h3 {
  margin-bottom: 8px;
}

.contact-note {
  font-size: 0.85rem;
  margin-bottom: 15px;
  color: #666;
}

.contact-form label {
  display: block;
  margin-bottom: 15px;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--brand-red);
  outline: none;
}

.contact-info {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 3px 10px var(--shadow);
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-info a {
  color: var(--brand-red);
  text-decoration: none;
}

.map {
  width: 100%;
  height: 750px;
  border: none;
  border-radius: var(--radius);
  margin-top: 15px;
}

/* -------------------------------------------------
   FOOTER & SOCIAL
   ------------------------------------------------- */
.footer {
  background: var(--dark);
  color: var(--light);
  text-align: center;
  padding: 25px 10px;
  margin-top: 50px;
  font-size: 0.9rem;
}

.social-links {
  text-align: center;
  padding: 30px 10px;
}

.social-links p {
  color: var(--light);
  margin-bottom: 10px;
  font-weight: 500;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.social-icons a img {
  width: 28px;
  height: 28px;
  filter: invert(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.1);
  filter: invert(70%) sepia(50%) saturate(500%) hue-rotate(-10deg);
}

/* -------------------------------------------------
   FLOATING LINKTREE QR
   ------------------------------------------------- */
.floating-qr {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  cursor: pointer;
}

.floating-qr img {
  width: 65px;
  height: 65px;
  border-radius: 10px;
  border: 3px solid var(--brand-red);
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-qr img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

/* -------------------------------------------------
   RESPONSIVE – TABLET & MOBILE
   ------------------------------------------------- */

/* Medium screens */
@media (max-width: 900px) {
  .hero-new h1 {
    font-size: 2.4rem;
  }
}

/* Tablets & small phones */
@media (max-width: 768px) {

  /* NAVBAR – stack logo on top, links below */
  .nav-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 12px;
    gap: 6px;
  }

  .logo {
    height: auto;
  }

  .logo img {
    max-height: 56px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .nav-links a {
    font-size: 0.85rem;
    padding-bottom: 2px;
  }

  /* HERO */
  .hero-new {
    padding: 140px 18px 80px;
    min-height: 75vh;
  }

  .hero-inner {
    max-width: 100%;
  }

  .hero-new h1 {
    font-size: 2.1rem;
    line-height: 1.25;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  /* SECTIONS */
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  /* HOMEPAGE FLAVOURS */
  .flavor-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .flavor-card {
    padding: 22px 18px;
  }

  /* ABOUT PAGE */
  .about-row,
  .about-row.reverse {
    flex-direction: column;
    padding: 40px 0;
  }

  /* MENU PAGE */
  .menu-intro p {
    font-size: 0.95rem;
  }

  .menu-tags span {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  .menu-illustration-section {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .menu-illustration-img {
    max-width: 220px;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.12));
  }

  .menu-cards {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 20px;
  }

  .menu-card {
    padding: 22px 18px;
  }

  /* HOMEPAGE TESTIMONIALS */
  .testimonial-row {
    flex-direction: column;
  }

  /* TESTIMONIALS PAGE */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .testimonials-page .testimonial-card {
    padding: 20px 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  /* CONTACT PAGE */
  .contact {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-form,
  .contact-info {
    padding: 22px 18px;
  }

  .contact-form label {
    font-size: 0.9rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 0.9rem;
    padding: 8px;
  }

  .map {
    height: 260px;
  }

  /* FOOTER & QR */
  .social-links {
    padding: 20px 10px;
  }

  .social-icons {
    gap: 14px;
  }

  .social-icons a img {
    width: 24px;
    height: 24px;
  }

  .floating-qr {
    bottom: 15px;
    right: 15px;
  }

  .floating-qr img {
    width: 55px;
    height: 55px;
  }
}

/* EXTRA SMALL PHONES */
@media (max-width: 480px) {
  .hero-new h1 {
    font-size: 1.9rem;
  }

  .page-header {
    padding: 100px 16px 60px;
  }

  .nav-links {
    justify-content: center;
  }
}
