/* 480px */
@media (max-width: 480px) {

  body {
    overflow-x: hidden;
  }

  /* NAVBAR */
  .cafe-nav {
    position: relative;
  }

  /* SHOW HAMBURGER */
  .hamburger {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
  }

  .hamburger span {
    width: 25px;
    height: 2px;
    background: #fff;
  }

  .cafe-logo {
    z-index: 1100;
  }

  .hamburger.active .line1 {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active .line2 {
    opacity: 0;
  }

  .hamburger.active .line3 {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hamburger span {
    transition: transform 0.3s ease, opacity 0.2s ease;
  }

  /* FULL SCREEN MENU */
  .cafe-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    width: 100vw;
    height: 100vh;

    background: linear-gradient(180deg,
        #0f0f0f 0%,
        #1a1a1a 100%);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;

    transform: translateY(-100%);
    transition: transform 0.5s ease;

    z-index: 1000;
  }

  .cafe-links.active {
    transform: translateY(0);
  }

  .cafe-links a {
    font-size: 26px;
    font-family: var(--ff-heading);
    color: #fff;

    letter-spacing: 1px;
    position: relative;
    transition: 0.3s ease;
  }

  .cafe-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0%;
    height: 2px;
    background: var(--clr-accent);
    transform: translateX(-50%);
    transition: 0.3s ease;
  }

  .cafe-links a:hover::after {
    width: 60%;
  }

  .mobile-cta {
    margin-top: 20px;
  }

  .mobile-cta .btn {
    padding: 14px 30px;
    font-size: 14px;
  }

  .cafe-links {
    backdrop-filter: blur(12px);
  }

  .cafe-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
  }

  .cafe-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .cafe-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .cafe-links.active li:nth-child(2) {
    transition-delay: 0.2s;
  }

  .cafe-links.active li:nth-child(3) {
    transition-delay: 0.3s;
  }

  .cafe-links.active li:nth-child(4) {
    transition-delay: 0.4s;
  }

  .cafe-links.active li:nth-child(5) {
    transition-delay: 0.5s;
  }

  body.menu-open {
    overflow: hidden;
  }

  .mobile-cta {
    display: flex;
  }

  /* HIDE CTA BUTTON */
  .cafe-nav-btn {
    display: none;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 15px;
    border-radius: 50%;
  }

  .whatsapp-float img {
    width: 30px;
    height: 30px;
  }


  .whatsapp-float {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }

  .whatsapp-float:active {
    transform: scale(0.9);
  }

  /* FOOTER SECTION */


  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
  }


  .footer-brand h2 {
    font-size: 24px;
  }


  .footer-links {
    align-items: left;
  }

  .footer-right {
    text-align: left;
  }

  .footer-social {
    justify-content: left;
  }

  .footer-social {
    justify-content: left;
  }

  .footer-contact a {
    justify-content: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .cafe-footer {
    padding: 60px 0 30px;
  }



  /* ------------------------ HOME PAGE CSS START HERE ------------------------------- */
  /* HOME PAGE : HERO SECTION */

  .cafe-hero {
    padding-top: 70px;
    padding-bottom: 30px;
    min-height: 100svh;
    display: flex;
    align-items: space-between;
  }

  .hero-wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hero-image {
    order: 1;
  }

  .hero-content {
    order: 2;
  }

  .hero-image {
    position: relative;
  }

  .hero-image img {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    transform: none;
    height: 340px;
  }

  /* soft overlay for cafe vibe */
  .hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.4),
        transparent);
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 0.5px;
  }

  .hero-content p {
    font-size: 15px;
    max-width: 300px;
    margin: 15px auto 25px;
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero-buttons .btn {
    padding: 14px 24px;
    font-size: 14px;
  }

  .hero-content h1 br {
    display: none;
  }

  /* HOME PAGE : ABOUT SECTION */

  .cafe-about {
    overflow: hidden;
  }

  .about-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .about-image img {
    width: 100%;
    border-radius: 12px;
  }


  .about-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .about-content p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .about-content .btn {
    margin-top: 10px;
  }

  .cafe-about {
    padding: 50px 0;
  }

  .about-image img {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }

  /* HOME PAGE : MENU SECTION */

  .menu-grid {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    cursor: grab;
  }

  .menu-grid::-webkit-scrollbar {
    display: none;
  }

  .menu-card {
    min-width: 240px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 14px;
  }

  .menu-card h3 {
    font-size: 17px;
    margin-bottom: 4px;
  }

  .menu-card p {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .price {
    font-size: 15px;
  }

  .menu-tabs {
    gap: 10px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab {
    white-space: nowrap;
    font-size: 13px;
    padding: 8px 16px;
  }

  .cafe-menu {
    padding: 50px 0;
  }

  .menu-card:active {
    transform: scale(0.98);
  }

  .menu-card img {
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
  }

  /* HOME PAGE : WHY SECTION */

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card {
    padding: 20px;
  }

  .why-icon svg {
    width: 32px;
    height: 32px;
  }

  .why-card h3 {
    font-size: 18px;
  }

  .why-card p {
    font-size: 13px;
  }

  .cafe-why {
    padding: 50px 0;
  }

  .why-card:active {
    transform: scale(0.98);
  }

  /* HOME PAGE : GALLERY SECTION */

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-item {
    border-radius: 12px;
  }

  .gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .gallery-item:active img {
    transform: scale(1.03);
  }

  .gallery-item:active img {
    transform: scale(1.03);
  }

  .gallery-item {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }

  /* HOME PAGE : TESTMONIAL SECTION */

  .testimonial-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .testimonial-card {
    width: 100%;
    max-width: 320px;
  }

  .testimonial-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .user img {
    width: 40px;
    height: 40px;
  }

  .user h4 {
    font-size: 14px;
  }

  .user span {
    font-size: 12px;
  }

  .cafe-testimonials {
    padding: 50px 0;
  }

  .testimonial-card {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }

  .testimonial h2 {
    line-height: 1.1;
    padding-bottom: 10px;
  }

  /* HOME PAGE : LOCATION SECTION */

  .location-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .info-item h3 {
    font-size: 16px;
  }

  .info-item p {
    font-size: 13px;
  }

  .location-map iframe {
    height: 250px;
    border-radius: 12px;
  }

  .location-info .btn {
    margin-top: 10px;
  }

  .cafe-location {
    padding: 50px 0;
  }

  .info-item {
    gap: 5px;
  }

  /* HOME PAGE : CTA SECTION */

  .cta-box {
    text-align: center;
    padding: 0 10px;
  }

  .cta-box h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .cta-box p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }


  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .cafe-cta {
    padding: 50px 0;
  }

  .cta-box {
    border-radius: 16px;
  }

}


/* 768px */
@media (min-width: 481px) and (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  section {
    padding: 70px 0;
  }

  .container {
    padding-inline: 28px;
  }

  /* ================= NAVBAR ================= */

  .cafe-nav {
    position: relative;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 1100;
  }

  .hamburger span {
    width: 26px;
    height: 2px;
    background: #fff;
    transition: 0.3s ease;
  }

  .hamburger.active .line1 {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active .line2 {
    opacity: 0;
  }

  .hamburger.active .line3 {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .cafe-logo {
    position: relative;
    z-index: 1100;
  }

  .cafe-nav-btn {
    display: none;
  }

  /* ================= TABLET SIDE MENU ================= */

  .cafe-links {
    position: fixed;
    top: 0;
    right: -100%;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg,
        rgba(15, 15, 15, 0.98),
        rgba(20, 20, 20, 0.95));
    backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transition: 0.45s ease;
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
  }

  .cafe-links.active {
    right: 0;
  }

  /* DARK OVERLAY */
  .cafe-links::before {
    content: "";
    position: fixed;
    inset: 0;
    backdrop-filter: blur(3px);
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    visibility: hidden;

    transition: 0.4s ease;

    z-index: -1;
  }

  .cafe-links.active::before {
    opacity: 1;
    visibility: visible;
  }

  /* LINKS */

  .cafe-links a {
    font-size: 20px;
    font-family: var(--ff-heading);
    color: #fff;
    letter-spacing: 0.5px;
    position: relative;
  }

  .cafe-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;

    width: 0%;
    height: 2px;

    background: var(--clr-accent);

    transform: translateX(-50%);
    transition: 0.3s ease;
  }

  .cafe-links a:hover::after {
    width: 60%;
  }

  /* MENU ITEM ANIMATION */

  .cafe-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
  }

  .cafe-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .cafe-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .cafe-links.active li:nth-child(2) {
    transition-delay: 0.2s;
  }

  .cafe-links.active li:nth-child(3) {
    transition-delay: 0.3s;
  }

  .cafe-links.active li:nth-child(4) {
    transition-delay: 0.4s;
  }

  .cafe-links.active li:nth-child(5) {
    transition-delay: 0.5s;
  }

  /* CTA */

  .mobile-cta {
    display: flex;
    margin-top: 10px;
  }

  .mobile-cta .btn {
    padding: 11px 22px;
    font-size: 13px;
  }

  body.menu-open {
    overflow: hidden;
  }

  /* WHATSAPP */

  .whatsapp-float {
    width: 58px;
    height: 58px;

    position: fixed;

    right: 20px;
    bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    z-index: 999;

    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.25);

    transition: all 0.3s ease;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }

  .whatsapp-float:hover {
    transform: scale(1.08);
  }

  .whatsapp-float:active {
    transform: scale(0.95);
  }

  /* --------------------------- HOME PAGE CSS START HERE --------------------------- */

  /* HOME PAGE : HERO SECTION */

  .cafe-hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 70px;
  }

  /* WRAPPER */

  .hero-wrapper {
    display: flex;
    flex-direction: column;

    align-items: center;
    text-align: center;

    gap: 35px;
  }

  /* ================= IMAGE ================= */

  .hero-image {
    order: 1;
    width: 100%;
  }

  .hero-image img {
    width: 100%;
    max-width: 540px;

    height: 380px;

    object-fit: cover;

    border-radius: 20px;

    transform: none;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);

    margin-inline: auto;
  }

  /* REMOVE MOBILE OVERLAY */

  .hero-image::after {
    display: none;
  }

  /* ================= CONTENT ================= */

  .hero-content {
    order: 2;
    max-width: 720px;
  }

  .hero-content h1 {
    font-size: 60px;
    line-height: 1.08;

    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 17px;

    max-width: 580px;

    margin: 0 auto 30px;
  }

  /* ================= BUTTONS ================= */

  .hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 16px;

    margin-top: 10px;
  }

  .hero-buttons .btn {
    padding: 15px 28px;
    font-size: 14px;
  }

  /* HOME PAGE : ABOUT SECTION */

  /* ================= ABOUT SECTION ================= */

  .cafe-about {
    padding: 60px 0;
    overflow: hidden;
  }

  /* WRAPPER */

  .about-wrapper {
    display: flex;
    flex-direction: column;

    align-items: center;
    text-align: center;

    gap: 35px;
  }

  /* ================= IMAGE ================= */

  .about-image {
    width: 100%;
  }

  .about-image img {
    width: 100%;
    max-width: 540px;
    height: 360px;
    object-fit: cover;
    border-radius: 20px;
    margin-inline: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  }

  /* ================= CONTENT ================= */

  .about-content {
    max-width: 650px;
  }

  .about-content h2 {
    font-size: 48px;
    line-height: 1.15;

    margin-bottom: 20px;
  }

  .about-content p {
    font-size: 16px;
    line-height: 1.8;

    max-width: 560px;

    margin: 0 auto 16px;
  }

  /* ================= BUTTON ================= */

  .about-content .btn {
    margin-top: 20px;
    padding: 15px 28px;
  }

  /* HERO SECTOIN : MENU SECTION */

  .cafe-menu {
    padding: 60px 0;
  }

  /* HEADING */

  .menu-top {
    text-align: center;
    margin-bottom: 40px;
  }

  .menu-top h2 {
    font-size: 52px;
    margin-bottom: 16px;
  }

  .menu-top p {
    max-width: 620px;
    margin-inline: auto;

    font-size: 16px;
  }

  /* CATEGORY TABS */

  .menu-tabs {
    gap: 14px;
    margin-bottom: 40px;

    flex-wrap: wrap;
    justify-content: center;
  }

  .menu-tab {
    padding: 12px 24px;
    font-size: 14px;
  }

  /* HORIZONTAL SCROLL */

  .menu-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-inline: 10px;
    padding-bottom: 10px;
    scroll-padding-left: 10px;
  }

  /* HIDE SCROLLBAR */

  .menu-grid::-webkit-scrollbar {
    display: none;
  }

  /* CARD */

  .menu-card {
    min-width: 330px;
    scroll-snap-align: center;
    border-radius: 22px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .menu-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
  }

  .menu-card-content {
    padding: 22px;
  }

  .menu-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .menu-card p {
    font-size: 15px;
    line-height: 1.7;

    margin-bottom: 18px;
  }

  .menu-price {
    font-size: 18px;
  }

  /* HOME PAGE : WHY SECTION */

  .cafe-why {
    padding: 60px 0;
  }

  /* TOP */

  .cafe-why .text-center {
    margin-bottom: 45px;
  }

  .cafe-why h2 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .cafe-why .text-center p {
    max-width: 620px;
    /* margin-inline: auto; */
    font-size: 16px;
  }

  /* GRID */

  .why-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
  }

  /* LAST CARD CENTER */

  .why-card:last-child {
    grid-column: 1 / -1;

    max-width: 420px;

    margin-inline: auto;
  }

  /* CARD */

  .why-card {
    padding: 34px 28px;
    border-radius: 22px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transition: 0.4s ease;
  }

  /* HOVER */

  .why-card:hover {
    transform: translateY(-6px);

    border-color: rgba(201, 123, 54, 0.3);

    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.25),
      0 0 25px rgba(201, 123, 54, 0.08);
  }

  /* ICON */

  .why-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    margin-bottom: 28px;
    border-radius: 18px;
    background: rgba(201, 123, 54, 0.08);
    margin-bottom: 24px;
  }

  .why-icon svg {
    width: 30px;
    height: 30px;
  }

  /* TITLE */

  .why-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
  }

  /* TEXT */

  .why-card p {
    font-size: 15px;
    line-height: 1.8;
  }

  /* HOME PAGE : GALLERY SECTION */

  .cafe-gallery {
    padding: 60px 0;
  }

  /* TOP */

  .gallery-top {
    text-align: center;
    margin-bottom: 40px;
  }

  .gallery-top h2 {
    font-size: 42px;
    line-height: 1.15;

    margin-bottom: 14px;
  }

  .gallery-top p {
    max-width: 620px;
    margin-inline: auto;

    font-size: 16px;
  }

  /* GRID */

  .gallery-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
  }

  /* ITEM */

  .gallery-item {
    position: relative;
    overflow: hidden;
    height: fit-content;
    border-radius: 22px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.25);
    transition: 0.4s ease;
  }

  /* IMAGE */

  .gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.5s ease;
  }

  /* EDITORIAL RHYTHM */

  .gallery-item:nth-child(2) img,
  .gallery-item:nth-child(3) img {
    height: 340px;
  }

  /* HOVER */

  .gallery-item:hover img {
    transform: scale(1.05);
  }

  /* OVERLAY */

  .gallery-overlay {
    padding: 18px;
  }

  .gallery-overlay h3 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .gallery-overlay p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* HOME PAGE : TESTIMONIAL SECTION */

  .cafe-testimonials {
    padding: 60px 0;
  }

  /* TOP */

  .cafe-testimonials .text-center {
    margin-bottom: 45px;
  }

  .cafe-testimonials h2 {
    font-size: 44px;
    line-height: 1.15;

    margin-bottom: 14px;
  }

  .cafe-testimonials .text-center p {
    max-width: 620px;
    font-size: 16px;
  }

  /* GRID */

  .testimonial-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
  }

  /* LAST CARD */

  .testimonial-card:last-child {
    grid-column: 1 / -1;

    max-width: 420px;

    margin-inline: auto;
  }

  /* CARD */

  .testimonial-card {
    position: relative;

    padding: 34px 28px;

    border-radius: 22px;

    background: linear-gradient(180deg,
        #141414 0%,
        #101010 100%);

    border: 1px solid rgba(255, 255, 255, 0.06);

    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.25);

    transition: 0.4s ease;
  }

  /* HOVER */

  .testimonial-card:hover {
    transform: translateY(-8px);

    border-color: rgba(201, 123, 54, 0.3);

    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.25),
      0 0 25px rgba(201, 123, 54, 0.08);
  }

  /* STARS */

  .testimonial-stars {
    margin-bottom: 22px;
  }

  /* REVIEW */

  .testimonial-card p {
    font-size: 15px;
    line-height: 1.8;

    margin-bottom: 24px;
  }

  /* AUTHOR */

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .testimonial-author img {
    width: 65px;
    height: 65px;

    border-radius: 50%;

    object-fit: cover;
  }

  .testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .testimonial-author span {
    font-size: 14px;
    opacity: 0.75;
  }

  /* HOME PAGE : LOCATION SECTION */

  .cafe-location {
    padding: 60px 0;
  }

  .location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;

    gap: 24px;

    align-items: stretch;
  }

  .location-info {
    height: 100%;
    padding: 30px;
    border-radius: 18px;
  }

  .location-map {
    overflow: hidden;
    border-radius: 22px;
  }

  .location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
  }

  /* HOME PAGE : CTA SECTION */

  .cafe-cta {
    padding: 60px 0;
  }

  .cta-content {
    text-align: center;
    max-width: 700px;
    margin-inline: auto;
  }

  .cta-content h2 {
    font-size: 46px;
    line-height: 1.15;

    margin-bottom: 18px;
  }

  .cta-content p {
    max-width: 580px;

    margin: 0 auto 30px;

    font-size: 16px;
    line-height: 1.8;
  }

  .cta-content .btn {
    padding: 16px 32px;
  }

  /* FOTTER */

  .cafe-footer {
    padding: 60px 0 30px;
  }

  /* MAIN WRAPPER */

  .footer-wrapper {
    display: flex;
    flex-direction: column;

    align-items: left;
    text-align: left;

    gap: 35px;
  }

  /* BRAND */

  .footer-brand {
    max-width: 600px;
  }

  .footer-brand h3 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .footer-brand p {
    max-width: 500px;

    margin: 0 auto;

    font-size: 15px;
    line-height: 1.8;
  }

  /* NAVIGATION */

  .footer-links ul {
    display: flex;
    flex-direction: column;

    gap: 14px;
  }

  .footer-links a {
    font-size: 15px;
  }

  /* CONTACT */

  .footer-contact {
    display: flex;
    flex-direction: column;

    gap: 12px;
  }

  .footer-contact p,
  .footer-contact a {
    font-size: 15px;
  }

  /* SOCIAL */

  .footer-social {
    display: flex;
    justify-content: left;
    align-items: center;

    gap: 16px;

    margin-top: 10px;
  }

  .footer-social a {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
  }

  /* BOTTOM */

  .footer-bottom {
    margin-top: 40px;
    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    text-align: center;
  }

  .footer-bottom p {
    font-size: 14px;
  }

  .footer-links {
    align-items: left;
  }

  .footer-right {
    text-align: left;
  }

  .footer-social {
    justify-content: left;
  }

  .footer-social {
    justify-content: left;
  }

  .footer-contact a {
    justify-content: left;
  }


}

/* 992px */
@media (min-width: 768px) and (max-width: 992px) {

  /* NAVBAR */

  .cafe-header {
    padding: 18px 0;
  }

  .cafe-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* LOGO */

  .cafe-logo a {
    font-size: 22px;
  }

  /* SHOW DESKTOP MENU */

  .cafe-links {
    position: static;

    width: auto;
    height: auto;

    display: flex;
    flex-direction: row;

    align-items: center;

    gap: 30px;

    transform: none;

    background: transparent;

    backdrop-filter: none;

    padding: 0;
  }

  .cafe-links li {
    opacity: 1;
    transform: none;
  }

  .cafe-links a {
    font-size: 15px;
  }

  /* SHOW CTA */

  .cafe-nav-btn {
    display: inline-flex;

    padding: 13px 22px;
    font-size: 14px;
  }

  /* HIDE HAMBURGER */

  .hamburger {
    display: none;
  }

  /* WHATSAPP */

  .whatsapp-float {
    width: 62px;
    height: 62px;

    right: 24px;
    bottom: 24px;
  }

  .whatsapp-float svg {
    width: 32px;
    height: 32px;
  }

  /* ------------------------------ HOME PAGE CSS START HERE ----------------------------- */

  /* HOME PAGE : HERO SECTION */

  .cafe-hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
  }

  .hero-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }

  /* CONTENT */

  .hero-content {
    flex: 1.1;
    text-align: left;
    max-width: 520px;
  }

  .hero-content h1 {
    font-size: 56px;
    line-height: 1.05;

    margin-bottom: 24px;
  }

  .hero-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 35px;
  }

  /* BUTTONS */

  .hero-buttons {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-buttons .btn {
    padding: 14px 24px;
  }

  /* IMAGE */

  .hero-image {
    flex: 0.9;
    display: flex;
    justify-content: flex-end;
  }

  .hero-image img {
    width: 100%;
    max-width: 360px;
    height: 450px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
  }

  /* REMOVE TABLET CENTER ALIGNMENT */

  .hero-image::after {
    display: none;
  }

  /* HOME PAGE : ABOUT SECTION */

  /* ================= ABOUT : 768px → 992px ================= */

  .cafe-about {
    padding: 60px 0;
  }

  .about-wrapper {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;
  }

  /* IMAGE */

  .about-image img {
    width: 100%;
    max-width: 420px;

    height: 500px;

    object-fit: cover;

    border-radius: 22px;

    margin: 0 auto;
  }

  /* CONTENT */

  .about-content {
    text-align: left;
  }

  .about-content h2 {
    font-size: 52px;
    line-height: 1.15;

    margin-bottom: 20px;
  }

  .about-content p {
    font-size: 16px;
    line-height: 1.8;

    margin-bottom: 18px;
  }

  /* BUTTON */

  .about-content .btn {
    margin-top: 10px;
  }

  /* HOME PAGE : MENU SECTION */

  /* ================= MENU : 768px → 992px ================= */

  .cafe-menu {
    padding: 60px 0;
  }

  /* HEADING */

  .cafe-menu h2 {
    font-size: 48px;
    margin-bottom: 14px;
  }

  .cafe-menu .section-subtitle {
    font-size: 17px;
    margin-bottom: 35px;
  }

  /* FILTER BUTTONS */

  .menu-filter {
    gap: 16px;
    margin-bottom: 40px;
  }

  .menu-filter button {
    padding: 12px 24px;
    font-size: 15px;
  }

  /* MENU LIST */

  .menu-grid {
    display: flex;

    overflow-x: auto;

    gap: 24px;

    scroll-snap-type: x mandatory;

    padding-bottom: 10px;
  }

  /* CARD */

  .menu-card {
    flex: 0 0 340px;

    scroll-snap-align: start;

    border-radius: 22px;
  }

  /* IMAGE */

  .menu-card img {
    width: 100%;
    height: 250px;

    object-fit: cover;
  }

  /* CONTENT */

  .menu-card-content {
    padding: 24px;
  }

  .menu-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .menu-card p {
    font-size: 15px;
    line-height: 1.7;
  }

  .menu-price {
    font-size: 22px;
    margin-top: 18px;
  }

  /* HOME PAGE : HERO SECTION */

  .cafe-why {
    padding: 60px 0;
  }

  /* HEADING */

  .cafe-why h2 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .cafe-why .text-center p {
    font-size: 16px;
  }

  /* GRID */

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  /* REMOVE TABLET LAST CARD STYLE */

  .why-card:last-child {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
  }

  /* CARD */

  .why-card {
    padding: 28px 22px;
    border-radius: 20px;
  }

  /* ICON */

  .why-icon {
    width: 70px;
    height: 70px;
    margin-inline: auto;
    margin-bottom: 0;
  }

  .why-icon svg {
    width: 30px;
    height: 30px;
  }

  /* CONTENT */

  .why-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    text-align: center;
  }

  .why-card p {
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
  }

  /* HOME PAGE : GALLERY SECTION */

  .cafe-gallery {
    padding: 60px 0;
  }

  /* HEADING */

  .cafe-gallery h2 {
    font-size: 42px;
    line-height: 1.15;

    margin-bottom: 14px;
  }

  .cafe-gallery .section-subtitle {
    font-size: 16px;
  }

  /* GRID */

  .gallery-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
  }

  /* CARD */

  .gallery-item {
    overflow: hidden;

    border-radius: 20px;
  }

  /* HOVER */

  .gallery-item:hover img {
    transform: scale(1.05);
  }

  /* HOME PAGE : TESTIMONIALS SECTION */

  .cafe-testimonials {
    padding: 60px 0;
  }

  /* HEADING */

  .cafe-testimonials h2 {
    font-size: 42px;
    line-height: 1.15;

    margin-bottom: 14px;
  }

  .cafe-testimonials .section-subtitle {
    font-size: 16px;
  }

  /* GRID */

  .testimonial-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
  }

  /* REMOVE TABLET LAST CARD STYLE */

  .testimonial-card:last-child {
    grid-column: auto;

    max-width: 100%;

    margin: 0;
  }

  /* CARD */

  .testimonial-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  /* STARS */

  .testimonial-stars {
    margin-bottom: 18px;
  }

  /* REVIEW */

  .testimonial-card p {
    font-size: 15px;
    line-height: 1.8;

    margin-bottom: 24px;
  }

  /* AUTHOR */

  .testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
    gap: 14px;
  }

  .testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;

    object-fit: cover;
  }

  .testimonial-author h4 {
    font-size: 18px;
  }

  .testimonial-author span {
    font-size: 14px;
  }

  /* HOME PAGE : LOCATION SECTION */

  /* ================= LOCATION : 768px → 992px ================= */

  .cafe-location {
    padding: 60px 0;
  }

  /* HEADING */

  .cafe-location h2 {
    font-size: 42px;
    margin-bottom: 14px;
  }

  .cafe-location .section-subtitle {
    font-size: 16px;
  }

  /* WRAPPER */

  .location-wrapper {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 24px;

    align-items: stretch;
  }

  /* INFO CARD */

  .location-info {
    padding: 30px;
    border-radius: 20px;
  }

  /* INFO ITEMS */

  .location-info-item {
    margin-bottom: 24px;
  }

  .location-info-item:last-child {
    margin-bottom: 0;
  }

  /* MAP */

  .location-map {
    overflow: hidden;
    border-radius: 22px;
  }

  .location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
  }

  /* HOME PAGE : CTA SECTION */

  /* ================= CTA : 768px → 992px ================= */

  .cafe-cta {
    padding: 60px 0;
  }

  /* CONTENT */

  .cta-content {
    max-width: 700px;

    margin-inline: auto;

    text-align: center;
  }

  /* HEADING */

  .cta-content h2 {
    font-size: 48px;

    line-height: 1.15;

    margin-bottom: 18px;
  }

  /* TEXT */

  .cta-content p {
    max-width: 600px;

    margin: 0 auto 30px;

    font-size: 17px;

    line-height: 1.8;
  }

  /* BUTTON */

  .cta-content .btn {
    padding: 16px 34px;
  }


}