/* ===== CUSTOM FONTS ===== */
html {
  scroll-behavior: smooth;
}

* {
  caret-color: transparent !important;
}

*:focus {
  outline: none;
}

@font-face {
  font-family: "Baloo2";
  src: url("../fonts/Baloo2-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Baloo2";
  src: url("../fonts/Baloo2-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

:root {
  --pink: #da1984;
  --yellow: #fff033;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  font-weight: 400;
}

.hero-title,
.rewards-content h2,
.story-text h2 {
  font-family: "Baloo2", cursive;
  letter-spacing: 0.5px;
  font-weight: 800;
}

p {
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
}

.navbar-logo {
  height: 83px;
}

/* NAVBAR TEXT */
.navbar,
.navbar a,
.navbar .nav-link {
  font-family: "Baloo2", cursive;
  font-weight: 700;
}

/* FIX MOBILE NAVBAR ALIGNMENT 
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--pink);
    padding: 20px 0;
    text-align: center;
  }

  .navbar-nav {
    width: 100%;
    align-items: center;
  }

  .navbar-nav .nav-item {
    margin: 10px 0;
  }

  .navbar .btn-yellow {
    margin-top: 10px;
  }
}
*/

.hero-image {
  max-width: 520px;
  width: 100%;
  margin-left: auto;
}

.rewards-img {
  width: 100%;
  max-width: 480px;
  display: block;
  margin: auto;
}

/* ===== SECTION SEPARATION SHADOW ===== */

section {
  position: relative;
  z-index: 1;
}

/* Soft separation shadow */
section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 30px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.06),
    rgba(0, 0, 0, 0.03),
    transparent
  );
}

/* NAVBAR */
.bg-pink {
  background-color: var(--pink);
}

.btn-yellow {
  background-color: #fff033;
  color: #da1984;
  font-family: "Baloo2", cursive;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: none;
}

.btn-yellow:hover {
  background-color: #ffe600; /* slightly darker yellow */
  color: #000; /* keep text readable */
  transform: translateY(-1px);
}

/* HERO */
.hero-section {
  background: var(--pink);
  color: white;
  padding: 90px 0;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: #fff033;
}

.hero-text {
  font-size: 1.1rem;
  margin-top: 15px;
}

.store-btn {
  height: 45px;
}

@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }

  .hero-section .row {
    flex-direction: column;
  }

  .hero-section .col-lg-6 {
    width: 100%;
  }

  .hero-image {
    margin-top: 30px;
    max-width: 90%;
  }

  .store-btn {
    margin: 10px auto;
    display: block;
  }
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== OUR STORY SECTION ===== */

.story-section {
  background: #ffffff;
  padding: 37px 0 41px;
}

.story-container {
  max-width: 95%;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* TEXT */
.story-text {
  flex: 1;
  max-width: 520px;
}

.story-text h2 {
  font-size: clamp(2.4rem, 3.2vw, 3.2rem);
  color: #da1984;
  margin-bottom: 32px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

/* Subtle underline accent */
.story-text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60%;
  height: 6px;
  background-color: #fff033;
  border-radius: 10px;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 20px;
}

/* IMAGE */
.story-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  transform: translateY(-10px);
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.18));
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .story-container {
    flex-direction: column;
    text-align: center;
  }

  .story-image {
    margin-top: 50px;
  }

  .story-image img {
    max-width: 420px;
  }
}

@media (max-width: 576px) {
  .story-text h2 {
    font-size: 2rem;
  }

  .story-text p {
    font-size: 1rem;
  }

  .story-image img {
    max-width: 320px;
  }
}
/* ===== REWARDS SECTION ===== */

.rewards-section {
  background: #fff033;
  padding: 37px 0;
}

.rewards-container {
  max-width: 95%;
  margin: auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* IMAGE */
.rewards-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.rewards-image img {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.2));
}

/* TEXT */
.rewards-content {
  flex: 1;
}

.rewards-content h2 {
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  color: #da1984;
  margin-bottom: 24px;
  font-weight: 700;
}

.rewards-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .rewards-container {
    flex-direction: column;
    text-align: center;
  }

  .rewards-image img {
    max-width: 420px;
  }
}

.policy-header {
  background: #da1984;
  padding: 60px 20px 30px;
  text-align: center;
}

.policy-logo {
  height: 50px;
  margin-bottom: 10px;
}

.policy-content {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.policy-content h3 {
  color: #da1984;
  margin-top: 30px;
}

/* FORCE FULL-WHITE NAV TEXT */
.navbar-dark .navbar-nav .nav-link {
  color: #ffffff !important;
  opacity: 1 !important;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: #fff !important;
  opacity: 1 !important;
}

/* Optional: Active link style */
.navbar-dark .navbar-nav .nav-link.active {
  font-weight: 700;
}

@media (max-width: 800px) {
  .store-btn {
    display: block;
    margin: 0 auto;
  }

  /* If wrapped in a container (recommended) */
  .downloadbtns {
    display: flex;
    justify-content: center;
    gap: 12px;
  }
}

/* NAVBAR ITEM HOVER EFFECT */
.navbar-dark .navbar-nav .nav-link {
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
  border-radius: 6px; /* subtle rounding for hover */
  padding: 5px 10px; /* slight padding to make hover background visible */
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  background-color: #fffacd; /* light yellow */
  color: #000 !important; /* black text for contrast */
}

/* ===== HERO CTA BUTTONS ===== */

.cta-buttons a,
.moods-cta {
  font-family: "Baloo2", cursive;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 20px;
}

/* FIND YOUR MOOD BUTTON */
.btn-find-mood {
  background-color: #fff033;
  color: #da1984;
  border: none;
}

.btn-find-mood:hover {
  background-color: #ffe600;
  transform: translateY(-2px);
}

/* DOWNLOAD OUTLINE BUTTON */
.btn-download-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-download-outline:hover {
  background-color: #ffffff;
  color: #da1984;
  transform: translateY(-2px);
}

/* ===== MOODS SECTION ===== */

.moods-section {
  background: #ffffff;
  padding: 80px 0;
}

/* Section Header */
.moods-header h2 {
  font-family: "Baloo2", cursive;
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  color: #da1984;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.moods-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 60%;
  height: 6px;
  background-color: #fff033;
  border-radius: 10px;
}

.moods-subtext {
  margin-top: 25px;
  color: #555;
  font-size: 1.1rem;
}

/* Mood Cards */
.mood-card {
  position: relative;
  background: #ffffff;
  padding: 55px 35px;
  border-radius: 25px;
  height: 100%;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.5s cubic-bezier(0.22, 0.68, 0.31, 1),
    box-shadow 0.5s ease;
}

/* Smooth gradient overlay layer */
.mood-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #da1984, #ff4db8);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}
/* Unified Gradient Hover */
/* ZOOM EFFECT + GRADIENT FADE IN */
.mood-card:hover {
  transform: scale(1.03);
  box-shadow: 0 35px 80px rgba(218, 25, 132, 0.35);
}

.mood-card:hover::after {
  opacity: 1;
}

/* Keep content above gradient */
.mood-card > * {
  position: relative;
  z-index: 2;
}

/* Text transitions */
.mood-card h3 {
  font-family: "Baloo2", cursive;
  font-size: 2rem;
  color: #da1984;
  margin-bottom: 18px;
  transition: color 0.4s ease;
}

.mood-card p {
  color: #444;
  transition: color 0.4s ease;
}

.mood-card:hover h3,
.mood-card:hover p {
  color: #ffffff;
}

.mood-card:hover h3,
.mood-card:hover p {
  color: #ffffff;
}

.mood-card h3 {
  font-family: "Baloo2", cursive;
  font-size: 2rem;
  color: #da1984;
  margin-bottom: 18px;
  transition: color 0.3s ease;
}

.mood-card p {
  color: #444;
  transition: color 0.3s ease;
}

.mood-tagline {
  font-weight: 600;
  margin-bottom: 14px;
}

.moods-section {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Decorative Shapes */
.moods-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.moods-shape-1 {
  width: 300px;
  height: 300px;
  background: rgba(255, 240, 51, 0.15);
  top: -80px;
  left: -80px;
}

.moods-shape-2 {
  width: 250px;
  height: 250px;
  background: rgba(218, 25, 132, 0.08);
  bottom: -100px;
  right: -80px;
}

.mood-img {
  width: 140px;
  height: auto;
  margin-bottom: 30px;
  transition: transform 0.5s cubic-bezier(0.22, 0.68, 0.31, 1);
}

/* Slight tilt */
.mood-card:hover .mood-img {
  transform: rotate(-6deg) scale(1.08);
}

/* Soft gradient glow */
.mood-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(255, 240, 51, 0.4) 0%,
    rgba(255, 240, 51, 0.1) 40%,
    transparent 70%
  );
  border-radius: 50%;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  transition: all 0.4s ease;
}

.mood-card:hover::before {
  transform: translateX(-50%) scale(1.15);
  opacity: 0.9;
}

/* ===== made to move with you ===== */

/* ===== MADE TO MOVE SECTION ===== */

.move-section {
  background: #fff033;
  padding: 80px 0;
}

.move-container {
  max-width: 95%;
  margin: auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* IMAGE */
.move-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.move-image img {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.2));
  transition: transform 0.5s ease;
}

.move-image img:hover {
  transform: translateY(-8px);
}

/* TEXT */
.move-content {
  flex: 1;
}

.move-content h2 {
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  color: #da1984;
  margin-bottom: 24px;
  font-weight: 800;
  font-family: "Baloo2", cursive;
}

.move-lead {
  font-weight: 600;
  font-size: 1.2rem;
  color: #333;
}

.move-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

/* CTA Button */
.btn-move-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 36px;
  border-radius: 40px;
  background-color: #da1984;
  color: #ffffff;
  font-family: "Baloo2", cursive;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-move-cta:hover {
  background-color: #c01474;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(218, 25, 132, 0.4);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .move-container {
    flex-direction: column;
    text-align: center;
  }

  .move-image img {
    max-width: 420px;
  }
}

/* ===== COMMUNITY SECTION ===== */

.community-section {
  background: #ffffff;
  padding-bottom: 50px;
}

.community-container {
  max-width: 95%;
  margin: auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* TEXT */
.community-content {
  flex: 1;
}

.community-content h2 {
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  color: #da1984;
  margin-bottom: 24px;
  font-weight: 800;
  font-family: "Baloo2", cursive;
}

.community-lead {
  font-weight: 600;
  font-size: 1.2rem;
  color: #333;
}

.community-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

/* IMAGE */
.community-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.community-image img {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.18));
  transition: transform 0.5s ease;
}

.community-image img:hover {
  transform: translateY(-8px);
}

/* CTA */
.btn-community-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 36px;
  border-radius: 40px;
  background-color: #da1984;
  color: #ffffff;
  font-family: "Baloo2", cursive;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-community-cta:hover {
  background-color: #c01474;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(218, 25, 132, 0.35);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .community-container {
    flex-direction: column;
    text-align: center;
  }

  .community-image img {
    max-width: 420px;
  }
}

/* ===== CLEAN 3-COLUMN FOOTER ===== */

.footer {
  background: var(--pink);
  color: #ffffff;
  padding: 70px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT */
.footer-logo-large {
  height: 110px;
  width: auto;
}

/* CENTER */
.footer-brand {
  font-family: "Baloo2", cursive;
  font-weight: 800;
  margin-bottom: 6px;
}

.footer-tagline {
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-small {
  opacity: 0.9;
  margin-bottom: 4px;
}

.footer-social {
  margin-top: 18px;
}

/* RIGHT */
.footer-right {
  text-align: right;
}

.footer-email {
  font-weight: 500;
  margin-bottom: 14px;
}

.footer-copy {
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* LINKS */
.footer a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }
}

/* ===== ABOUT PAGE ===== */

.about-hero {
  background: var(--pink);
  padding: 120px 0 100px;
}

.about-story {
  background: #ffffff;
  padding: 100px 0;
}

.about-section-alt {
  background: #fff033;
  padding: 100px 0;
}

.about-heading {
  font-family: "Baloo2", cursive;
  font-size: clamp(2.2rem, 3vw, 3rem);
  color: #da1984;
  margin-bottom: 25px;
}

.about-img {
  max-width: 500px;
  width: 100%;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.15));
}

.about-moods {
  font-size: 1.2rem;
  margin: 20px 0;
}

.about-closing {
  font-weight: 600;
  margin-top: 20px;
}

/* ===== ABOUT GRID LAYOUT ===== */

.about-grid-section {
  background: #ffffff;
  padding: 100px 0;
}

.about-bottom-section {
  background: #fff033;
  padding: 100px 0;
}

.about-heading {
  font-family: "Baloo2", cursive;
  font-size: clamp(2.2rem, 3vw, 3rem);
  color: #da1984;
  margin-bottom: 25px;
}

.about-grid-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.about-img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.15));
}

.about-moods {
  font-size: 1.2rem;
  margin: 20px 0;
}

.about-closing {
  font-weight: 600;
  margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-grid-section {
    text-align: center;
  }

  .about-img {
    margin: 30px auto 0;
  }
}

/* ===== COMMUNITY PAGE ===== */

.community-hero {
  background: var(--pink);
  padding: 120px 0 100px;
}

.community-intro {
  background: #ffffff;
  padding: 100px 0;
}

.community-gallery {
  background: #fff033;
  padding: 100px 0;
}

.community-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.community-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-card:hover {
  transform: translateY(-8px);
}

.community-cta {
  background: #ffffff;
  padding: 80px 0;
}

/* ===== FAQ PAGE ===== */

.faq-hero {
  background: #fff033;
  padding: 80px 20px;
}

.faq-hero h1 {
  font-family: "Baloo2", cursive;
  font-size: 3rem;
  color: #da1984;
  font-weight: 800;
}

.faq-section {
  padding: 80px 0;
}

.faq-category {
  margin-top: 50px;
  margin-bottom: 20px;
  font-family: "Baloo2", cursive;
  color: #da1984;
  font-weight: 700;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  font-weight: 600;
  font-size: 1.05rem;
  padding: 18px 20px;
}

.accordion-button:not(.collapsed) {
  background-color: #da1984;
  color: #fff;
}

.accordion-body {
  background: #ffffff;
  padding: 20px;
  color: #444;
  line-height: 1.7;
}

/* ===== VISIT PAGE ===== */
/* ===== CLEAN VISIT PAGE ===== */

.visit-clean-section {
  padding: 120px 0;
  background: #ffffff;
}

.visit-title {
  font-family: "Baloo2", cursive;
  font-size: 3rem;
  font-weight: 800;
  color: #da1984;
  margin-bottom: 10px;
}

.visit-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 35px;
}

.visit-heading {
  font-family: "Baloo2", cursive;
  font-weight: 700;
  color: #da1984;
  margin-bottom: 20px;
}

.visit-info-box {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 18px;
  margin-bottom: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.visit-info-box p {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.visit-note {
  margin-bottom: 25px;
  color: #555;
}

.btn-visit-cta {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 40px;
  background-color: #da1984;
  color: #ffffff;
  font-family: "Baloo2", cursive;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-visit-cta:hover {
  background-color: #c01474;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(218, 25, 132, 0.35);
}

.map-container {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* ===== MENU PAGE ===== */

.menu-hero {
  background: #fff033;
  padding: 80px 0;
}

.menu-hero h1 {
  font-family: "Baloo2", cursive;
  font-size: 3rem;
  color: #da1984;
  font-weight: 800;
}

.menu-mood-section {
  padding: 100px 0;
  background: #ffffff;
}

.glow-bg {
  background: #fff9cc;
}

.menu-mood-title {
  font-family: "Baloo2", cursive;
  font-size: 2.5rem;
  color: #da1984;
  font-weight: 800;
}

.menu-mood-sub {
  color: #555;
  margin-top: 10px;
}

/* FIXED IMAGE CONTAINER */
.menu-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Image Wrapper */
.menu-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f4 100%);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 20px;
}

.menu-card:hover {
  transform: translateY(-8px);
}

.menu-app-section {
  background: #da1984;
  color: white;
  padding: 100px 0;
}

.menu-app-section h2 {
  font-family: "Baloo2", cursive;
  font-size: 2.5rem;
  font-weight: 800;
}

/* ===== MOBILE UI SHOWCASE ===== */

.menu-ui-section {
  background: #fff033;
  padding: 120px 0;
}

.ui-title {
  font-family: "Baloo2", cursive;
  font-size: 2.8rem;
  font-weight: 800;
  color: #da1984;
  margin-bottom: 20px;
}

.ui-subtext {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #333;
}

.ui-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.ui-features li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  position: relative;
  padding-left: 25px;
}

.ui-features li::before {
  content: "•";
  color: #da1984;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.ui-availability {
  margin-top: 15px;
  font-size: 0.95rem;
  color: #555;
}

.ui-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.ui-image {
  width: 380px; /* fixed controlled width */
  max-width: 100%; /* responsive fallback */
  height: auto;
  display: block;
  margin: 0 auto;

  animation: floatUI 4s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
}

/* Floating Animation */
@keyframes floatUI {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .menu-ui-section {
    text-align: center;
  }

  .ui-features li {
    padding-left: 0;
  }

  .ui-features li::before {
    display: none;
  }
}

/* ===== CUSTOM CENTERED NAVBAR LAYOUT ===== */

/* Desktop Layout */
/* DESKTOP LAYOUT */
@media (min-width: 992px) {
  .navbar .container {
    position: relative;
  }

  .nav-left {
    flex: 1;
  }

  .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .navbar-collapse {
    flex: 1;
    display: flex !important;
    justify-content: flex-end;
  }
}

/* Mobile Layout */
@media (max-width: 991px) {
  .navbar .container {
    display: flex;
    align-items: center;
  }

  .navbar-brand {
    position: relative;
    transform: none;
    margin-left: 5%;
  }
}

/* =========================
   FEATURED SECTION
========================= */

.featured-section {
  padding: 120px 0;
  background: #ffffff;
}

/* LEFT TEXT */

.featured-title {
  font-family: "Baloo2", cursive;
  font-size: 2.8rem;
  font-weight: 800;
  color: #da1984;
  margin-bottom: 20px;
}

.featured-sub {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #333;
}

.featured-desc {
  color: #555;
  margin-bottom: 30px;
  line-height: 1.7;
}

.btn-featured-cta {
  display: inline-block;
  padding: 14px 36px;
  background: #da1984;
  color: #ffffff;
  border-radius: 40px;
  font-family: "Baloo2", cursive;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-featured-cta:hover {
  background: #c01474;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(218, 25, 132, 0.35);
}

/* RIGHT PRODUCT CARDS */

.featured-products {
  display: flex;
  gap: 25px;
  justify-content: space-between;
}

.featured-card {
  flex: 1;
  background: #ffffff;
  padding: 25px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.featured-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
}

.featured-card h4 {
  font-family: "Baloo2", cursive;
  color: #da1984;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.featured-card p {
  font-size: 0.95rem;
  color: #555;
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(218, 25, 132, 0.15);
}

/* =========================
   FEATURED MOOD BADGES
========================= */

.featured-card {
  position: relative;
}

/* Base badge */
.mood-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: "Baloo2", cursive;
  color: #fff;
}

/* GRIND - bold energy */
.grind-badge {
  background: #da1984;
}

/* GLOW - lighter fresh */
.glow-badge {
  background: #da1984;
}

/* GROOVE - cozy vibe */
.groove-badge {
  background: #fff033;
  color: #da1984;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .featured-products {
    flex-direction: column;
  }

  .featured-content {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--pink);
    padding: 20px;
    border-radius: 12px;
    margin-top: 10px;
  }

  .navbar-nav {
    gap: 10px;
  }

  .navbar .btn-yellow {
    width: 100%;
  }
}

/* ===== FOOTER SOCIAL ICONS ===== */

.footer-follow-text {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}

/* FIX ICON ROW */
.footer-social-icons {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;
  gap: 16px;
}

.footer-social-icons a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  color: #ffffff;

  transition: all 0.3s ease;
}

.footer-social-icons a:hover {
  background: #fff033;
  color: #da1984;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-social {
  text-align: center; /* ensures text + icons align */
}
.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* MOBILE FIX */
@media (max-width: 576px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons a {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-center {
    text-align: center;
  }

  .footer-social-icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-text {
    font-size: 1rem;
    padding: 0 10px;
  }
}
