/* ==================== Global Styles ==================== */
body {
  margin: 0;
  font-family: Inter, sans-serif;
  background-color: #F8EDD9;
  color: #285a4d;
}

section {
  padding: 80px 20px;
  min-height: 100vh; /* full viewport height */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1, h2, h3 {
  margin: 0 0 20px 0;
}

/* ==================== Local Fonts ==================== */
@font-face {
  font-family: 'SoftPressBiform';
  src: url('/wp-content/plugins/special-effects-shortcodes/effects/moba_onepage/SoftPressBiform.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GraffitiFont';
  src: url('/wp-content/plugins/special-effects-shortcodes/effects/moba_onepage/GraffitiFont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ==================== Hero Section ==================== */
.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering */
  align-items: center;     /* horizontal centering */
  text-align: center;
  width: 100%;
  min-height: 100vh;       /* full screen height */
  background: linear-gradient(135deg, #285a4d 0%, #1f4a3f 60%, #163a31 100%);
  color: #F8EDD9;
  overflow: hidden;        /* prevent overflow */
}

/* ---------- Hero Heading ---------- */
.hero-heading {
  display: flex;
  flex-direction: column; /* stack on mobile */
  align-items: center;    /* horizontal centering for column */
  justify-content: center;/* vertical centering for column/row */
  gap: 0;                 /* default gap */
  line-height: 1;
}

/* Brand and product */
.hero-brand {
  font-family: 'SoftPressBiform', sans-serif;
  font-weight: normal;
  font-size: 8vw;         /* scales with viewport */
  font-size: 5rem;        /* fallback */
  white-space: nowrap;    /* prevent splitting MO’BA */
  text-align: center;
}

.hero-brand em {
  font-style: italic;
  text-align: center;
}

.hero-product {
  font-size: 7vw;
  font-size: 5rem;
  margin-top: 0.2em;
  text-align: center;
}

/* ---------- Hero Tagline ---------- */
.hero-tagline {
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 30px;
}

/* ---------- Hero Paragraph ---------- */
.hero-section p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

/* ---------- Hero Buttons ---------- */
.hero-cta {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-cta button {
  font-size: 1.2rem;
  padding: 15px 35px;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background-color: #f6949f;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  padding: 14px 32px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
  opacity: 0.9;
}

.btn-outline {
  border-radius: 30px;
  padding: 12px 28px;
  border: 2px solid #f6949f;
  background: transparent;
  color: #f6949f;
  transition: all 0.2s ease;
}
.btn-outline:hover {
  background-color: #f6949f;
  color: #fff;
}

/* ---------- Hero Decorative Circle ---------- */
.hero-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(246,148,159,0.1);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

/* ==================== Responsive Hero ==================== */

/* Tablet and up: flex row for heading */
@media (min-width: 768px) {
  .hero-heading {
    flex-direction: row;      /* brand + product side by side */
    gap: 2rem;                /* spacing */
    justify-content: center;  /* center horizontally */
    align-items: center;      /* center vertically */
  }
  .hero-brand { font-size: 5.95rem; }
  .hero-product { font-size: 5.95rem; margin-top: 0; }
}

/* Desktop refinements */
@media (min-width: 1024px) {
  .hero-brand, .hero-product {
    font-size: 6rem;
    text-align: center;
  }
}

/* Tablet fallback for mid-sized screens */
@media (max-width: 1024px) {
  .hero-heading { width: 85vw; gap: 2.5rem; }
  .hero-brand, .hero-product { font-size: 9rem; text-align: center; }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-heading { width: 85vw; gap: 2.5rem; }
  .hero-brand, .hero-product { font-size: 12rem; text-align: center; }
  .hero-cta { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-heading { gap: 1rem; text-align: center; }
  .hero-brand, .hero-product { font-size: 9rem; text-align: center; }
  .hero-tagline { font-size: 1rem; }
}
/* ==================== Journey Section ==================== */
.journey-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.journey-left,
.journey-right {
  flex: 1 1 300px;
}

/* Center image in journey-left */
.journey-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Journey Image */
.journey-left img {
  width: 35%;
  max-width: 300px;
  min-width: 180px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.journey-right h3 {
  font-family: 'SoftPressBiform', sans-serif;
  font-size: 1.8rem;
  color: #f6949f;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Tablet */
@media (max-width: 1024px) {
  .journey-left img {
    width: 45%;
    max-width: 250px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .journey-left img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
}

/* Graffiti Font for Journey Titles */
.graffiti-font {
  font-family: 'GraffitiFont', cursive;
  font-size: 2.2rem;
  color: #f6949f;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* ==================== Cards ==================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 250px;
  background-color: #F8EDD9;
  border: 2px solid #285a4d;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
}

/* Destination Icons */
.card-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin: 0 auto 12px auto;
  padding: 8px;
  background: #fff;
  border-radius: 10px;
  display: block;
}

/* ==================== Menu ==================== */
.menu-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.menu-item {
  flex: 1 1 300px;
  text-align: center;
}

.menu-item img {
  width: 100%;
  max-width: 250px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto 15px auto;
  display: block;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  text-align: left;
}

.menu-list > li {
  margin-bottom: 12px;
  display: flex; /* text + arrow */
}

.menu-list > li::before {
  content: "•";
  color: #f6949f;
  margin-right: 6px;
}

.submenu li::before {
  content: "–";
  color: #285a4d;
  margin-right: 6px;
}

.menu-list li .menu-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 6px;
  vertical-align: middle;
}

.menu-list li .menu-arrow:hover {
  transform: scale(1.2);
}

/* Download Button */
.menu-download-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.menu-download-container .btn-primary {
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  background-color: #f6949f;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

.menu-download-container .btn-primary:hover {
  opacity: 0.9;
}

/* ==================== Gallery ==================== */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-grid img {
  flex: 1 1 calc(33.333% - 10px);
  height: 220px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 6px;
  width: 100%;
}

/* Mobile: make images full-width and scale height automatically */
@media (max-width: 480px) {
  .gallery-grid img {
    flex: 1 1 100%;
    width: 100%;
    height: auto;          /* height scales proportionally */
    aspect-ratio: 4/3;     /* optional, maintains consistent shape */
  }
}

/* ==================== Collection Section ==================== */
.collection-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.collection-item {
  background-color: #F8EDD9;
  border: 2px solid #285a4d;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
}

.collection-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.collection-item h3 {
  margin: 10px 0 5px 0;
  font-size: 1.2rem;
  color: #285a4d;
}

.collection-item p {
  font-size: 1rem;
  color: #555;
  margin: 0 10px 15px 10px;
}

.collection-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ==================== Popups ==================== */
.popup {
  display: none;
  position: fixed;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.popup.active {
  display: flex;
  opacity: 1;
}

.popup-content {
  background: #F8EDD9;
  padding: 30px;
  max-height: 80%;
  overflow-y: auto;
  width: 90%;
  max-width: 600px;
  border: 3px solid #285a4d;
  border-radius: 8px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #f6949f;
  background: none;
  border: none;
}

/* ==================== Baristas ==================== */
.barista {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.barista.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.barista img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px auto;
  border: 4px solid #f6949f;
}

.barista-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
}

.barista-nav button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background-color: #f6949f;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.barista-nav button:hover {
  background-color: #285a4d;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

/* ==================== Contact Forms ==================== */
.contact-form,
.popup-form {
  background-color: #F8EDD9;
  border: 2px solid #285a4d;
  border-radius: 12px;
  padding: 30px;
  max-width: 500px;
  margin: 20px auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  font-family: Inter, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form h2,
.popup-form h2 {
  font-family: 'SoftPressBiform', sans-serif;
  font-size: 2.5rem;
  color: #f6949f;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}

.contact-form label,
.popup-form label {
  font-weight: bold;
  margin-bottom: 4px;
  color: #285a4d;
}

.contact-form input,
.contact-form textarea,
.popup-form input,
.popup-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 2px solid #285a4d;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  background-color: #fff;
  color: #285a4d;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.popup-form input:focus,
.popup-form textarea:focus {
  outline: none;
  border-color: #f6949f;
  box-shadow: 0 0 8px rgba(246,148,159,0.3);
}

.contact-form textarea,
.popup-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button,
.popup-form button {
  display: block;
  margin: 0 auto;
  background-color: #f6949f;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover,
.popup-form button:hover {
  background-color: #285a4d;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

/* Responsive Contact Forms */
@media (max-width: 480px) {
  .contact-form,
  .popup-form {
    padding: 20px;
    margin: 15px;
  }
  .contact-form h2,
  .popup-form h2 {
    font-size: 2rem;
  }
  .contact-form button,
  .popup-form button {
    width: 100%;
    padding: 12px 25px;
  }
}

/* ==================== Google Reviews Carousel ==================== */
#reviews {
  padding: 80px 20px;
}

.reviews-carousel {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  width: 100%;
}

.review-card {
  flex: 0 0 25%;
  background-color: #F8EDD9;
  border: 2px solid #285a4d;
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.review-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.review-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #f6949f;
}

.reviewer-name {
  font-family: 'SoftPressBiform', sans-serif;
  font-size: 1.2rem;
  color: #285a4d;
  margin-bottom: 10px;
}

.review-text {
  font-family: Inter, sans-serif;
  font-size: 1rem;
  color: #285a4d;
  line-height: 1.4;
}

/* Responsive Reviews */
@media (max-width: 1024px) {
  .review-card {
    flex: 0 0 calc(33.333% - 13px);
  }
}

@media (max-width: 768px) {
  .review-card {
    flex: 0 0 calc(33.333% - 13px);
  }
}

@media (max-width: 480px) {
  .review-card {
    flex: 0 0 calc(50% - 10px);
    padding: 20px 15px;
  }
  #reviews h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .review-photo {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  .reviewer-name {
    font-size: 1rem;
  }
  .review-text {
    font-size: 0.95rem;
  }
}

/* ==================== Footer ==================== */
.site-footer {
  background-color: #285a4d;
  color: #F8EDD9;
  padding: 60px 20px;
  font-family: Inter, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  text-align: center;
}

/* Brand & Tagline */
.footer-brand h2 {
  font-family: 'SoftPressBiform', sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #f6949f;
}

.footer-brand p {
  font-size: 1rem;
  color: #F8EDD9;
}

/* Social Media Links */
.footer-social {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.footer-social .social-link img {
  width: 50px;
  height: 50px;
  border-radius: 0px;
  object-fit: contain;
  border: none;
  padding: 0;
  background: transparent;
  transition: transform 0.2s ease;
}

.footer-social .social-link img:hover {
  transform: scale(1.1);
}

/* Contact Info */
.footer-contact p {
  margin: 5px 0;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #f6949f;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Quick Links */
.footer-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.footer-links a {
  color: #f6949f;
  text-decoration: none;
  font-weight: bold;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Copyright */
.footer-copy {
  width: 100%;
  margin-top: 30px;
  font-size: 0.85rem;
  text-align: center;
  color: #F8EDD9;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 25px;
  }
  .footer-brand h2 {
    font-size: 2rem;
  }
  .footer-social .social-link img {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .footer-brand h2 {
    font-size: 1.8rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* ==================== Unified Section Headings ==================== */
section h1 {
  font-family: 'SoftPressBiform', sans-serif;
  text-transform: uppercase;
  color: #f6949f;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.1;
}

@media (min-width: 769px) {
  section h1 {
    font-size: 5rem;
  }
}

section h2 {
  font-family: 'SoftPressBiform', sans-serif;
  text-transform: uppercase;
  color: #285a4d;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.1;
}

@media (min-width: 769px) {
  section h2 {
    font-size: 5rem;
  }
}