/* ========================= */
/* TABLET (<= 992px) */
/* ========================= */
@media (max-width: 992px) {

  /* NAVBAR */
  .navbar {
    padding: 20px 40px;
  }

  .nav-left,
  .nav-right {
    gap: 24px;
  }

  /* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 10001;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: white;
  transition: 0.3s;
}

  /* HERO */
  .hero-title {
    font-size: 56px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-description {
    font-size: 18px;
  }

  /* STORY */
 @media (max-width: 768px) {

   .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

 .story-left,
  .story-right {
    max-width: 100%;
  }

  .story-text {
    max-width: 100%;   /* 🔥 FULL WIDTH */
    margin: 0;
  /* 🔥 readable */
  }

  .between-image {
    width: 220px;
    margin: 0 auto;
  }

  .story-bean {
    display: none;
  }

}

  /* STATEMENT */
  .statement-content h2 {
    font-size: 60px;
  }

  /* FAVOURITES */
  .favourites {
    padding: 60px 40px;
  }

  .favourites-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  /* GALLERY */
  .gallery {
    padding: 80px 40px;
  }

  .gallery-item img {
    width: 180px;
    height: 320px;
  }

  /* VISIT */
  .visit {
    padding: 60px 40px;
  }

  .visit-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .visit-info {
    align-items: center;
    text-align: center;
  }

  /* MENU SHOWCASE */
  .menu-showcase {
    padding: 120px 40px 60px;
  }

  .menu-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-showcase-bottom {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  /* ABOUT */
  .about-brew {
    padding: 120px 40px 60px;
  }

  .about-brew-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  /* CONTACT */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .contact-form-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

}


/* ========================= */
/* MOBILE (<= 768px) */
/* ========================= */
@media (max-width: 768px) {

  .nav-container {
    justify-content: space-between;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;

    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);

    flex-direction: column;
    align-items: center;
    gap: 20px;

    padding: 30px 0;

    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.4s ease;
  }

  .nav-links a {
    color: white;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* ✅ FIXED POSITION OFFSET */
  body.other-page {
    padding-top: 70px;
  }

  /* HERO */
  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 16px;
  }

  /* STATEMENT */
  .statement-content h2 {
    font-size: 36px;
  }

  /* TITLES */
  .favourites-title,
  .gallery-title,
  .visit-title,
  .why-title {
    font-size: 24px;
  }

  /* MENU ITEMS */
  .menu-item {
    flex-direction: column;
    text-align: center;
  }

    .menu-showcase-category {
    grid-template-columns: 1fr; /* 🔥 remove sidebar layout */
    text-align: center;
    gap: 30px;
  }

  .menu-showcase-label {
    text-align: center;
  }

  .menu-showcase-grid {
    grid-template-columns: 1fr; /* stack items */
    justify-items: center;      /* center cards */
  }

  .menu-decor {
    display: none; /* 🔥 clean mobile instantly */
  }
  /* GALLERY */
  .gallery-item img {
    width: 140px;
    height: 240px;
  }

  /* REVIEW */
  .review-container {
    min-height: 420px; / /* 🔥 give space but not fixed */
  }

  .review {
    padding: 24px;
  }

  .review p {
    font-size: 16px;
  }

  /* MENU GRID */
  .menu-showcase-grid {
    grid-template-columns: 1fr;
  }

  .visit-beans {
    width: 60px;
    top: 60px;
  }
  /* FORM */
  .form-card {
    padding: 20px;
  }

  .why-cards {
    flex-direction: column;   /* 🔥 STACK THEM */
    align-items: center;
    gap: 20px;
  }

  .why-card {
    width: 100%;             /* 🔥 FULL WIDTH */
    max-width: 320px;        /* keeps it clean */
  }

  .experience {
    height: auto;              /* 🔥 let content control height */
    padding: 60px 20px;
  }

  .experience-title {
    font-size: 28px;           /* 🔥 smaller */
    line-height: 1.3;
  }

  .experience-text {
    font-size: 16px;
  }

  .experience-buttons {
    flex-direction: column;    /* 🔥 stack buttons */
    gap: 16px;
  }

  .experience-buttons .btn {
    width: 100%;               /* 🔥 full width buttons */
    max-width: 280px;
    margin: 0 auto;
  }

}


/* ========================= */
/* SMALL MOBILE (<= 480px) */
/* ========================= */
@media (max-width: 480px) {

  /* GLOBAL */
  section {
    padding: 40px 20px !important;
  }

  /* HERO */
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  /* STATEMENT */
  .statement-content h2 {
    font-size: 28px;
  }

  /* BUTTONS */
  .btn {
    width: 100%;
    text-align: center;
  }

  /* IMAGES */
  .menu-item img {
    width: 120px;
    height: 120px;
  }

  .visit-image img,
  .contact-right img,
  .about-brew-image img {
    width: 100%;
  }

}

