/*GLOBAL*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  font-family: 'Raleway', sans-serif;
  background: #364238;
}

img,
video {
  max-width: 100%;
  display: block;
}

a,
button,
input,
textarea {
  font: inherit;
}

/*SHARED LAYOUT*/
.footer {
  margin-top: auto;
  padding: 14px 18px;
  background-color: #1C1C1C;
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
  font-size: clamp(11px, 1.2vw, 13px);
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 35px;
  background: rgba(28, 28, 28, 0.94);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.nav-logo {
  position: absolute;
  left: 35px;
  display: flex;
  align-items: center;
}

.nav-logo img {
  width: 62px;
  height: 62px;
  min-width: 62px;
  min-height: 62px;
  max-width: 62px;
  max-height: 62px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.03);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 11px 16px;
  text-decoration: none;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border-bottom: 3px solid transparent;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.nav-links a:hover {
  color: #CFEAD8;
  background-color: rgba(107, 175, 146, 0.12);
  border-bottom: 3px solid #8FD3AC;
}

.nav-links a.active {
  color: #8FD3AC;
  background-color: rgba(107, 175, 146, 0.16);
  border-bottom: 3px solid #6BAF92;
}

/* SEARCH BAR - only appears on HOME and RECIPE */
.navbar-search {
  position: absolute;
  right: 35px;
  width: 240px;
}

.navbar:not(.has-search) .navbar-search {
  display: none;
}

.navbar-search input {
  width: 100%;
  padding: 11px 18px;
  border-radius: 30px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  transition: background-color 0.3s ease;
}

.navbar-search input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.navbar-search input:hover,
.navbar-search input:focus {
  background: rgba(107, 175, 146, 0.18);
}

/* SEARCH RESULTS */
.home-search-results {
  position: absolute;
  top: 115%;
  left: 0;
  width: 100%;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(24, 32, 27, 0.95);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18);
  z-index: 999;
}

.result-item {
  display: block;
  padding: 10px 14px;
  border-radius: 14px;
  text-decoration: none !important;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #F6F1E8;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: none !important;
}

.result-item:hover {
  background: rgba(107, 175, 146, 0.18);
  color: #CFEAD8;
  border-bottom: none !important;
}

.home-search-wrapper {
  display: none !important;
}

/* HOME PAGE */
body.home {
  min-height: 100vh;
  overflow: hidden;
}

body.home .home-main {
  flex: 1;

  min-height: calc(100vh - 60px);

  background-image: url("../images/midori.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  position: relative;

  overflow: hidden;

  padding-top: 90px;
  padding-bottom: 20px;
}

body.home .home-main::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.22),
    rgba(0, 0, 0, 0.07)
  );

  z-index: 1;
}

/* MOBILE */
@media (max-width: 900px) {

  .navbar {
    flex-wrap: wrap;

    height: auto;

    padding: 12px;

    gap: 12px;
  }

  .nav-links {
    width: 100%;

    justify-content: center;

    flex-wrap: wrap;
  }

  .nav-links a {
    font-size: 12px;

    padding: 8px 10px;
  }

  .navbar-search {
    width: 100%;
  }

  .nav-logo img {
    width: 54px;
    height: 54px;
  }
}

/* HERO */
.Welcome {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  color: white;
  padding-right: clamp(20px, 8vw, 8%);
  padding-left: clamp(20px, 45vw, 55%);
  position: relative;
  z-index: 2;
  animation: homeFadeUp 1.1s ease;
  margin-top: 24px;
}

/* HOME TEXT */
.Welcome h1 {
  font-family: 'Playfair Display', serif;
  font-style: italic;

  font-size: clamp(48px, 6vw, 88px);

  letter-spacing: 2px;

  line-height: 0.82;

  white-space: normal;

  margin-bottom: -10px;

  text-shadow:
    2px 2px 8px rgba(0,0,0,0.75),
    4px 4px 18px rgba(0,0,0,0.45);
}

.Welcome h1 span {
  display: block;
}

.line1 {
  font-size: clamp(32px, 3.8vw, 56px);

  letter-spacing: 2px;

  margin-bottom: -30px;
}

.line2 {
  font-size: clamp(46px, 5.4vw, 78px);

  white-space: nowrap;

  transform: translateY(clamp(-22px, -3vw, -34px));
}

.Welcome p {
  max-width: 520px;

  font-size: clamp(15px, 1.6vw, 20px);

  font-family: 'Poppins', sans-serif;

  line-height: 1.75;

  margin-top: 4px;

  text-shadow:
    2px 2px 8px rgba(0,0,0,0.65);
}

/* WELCOME BUTTON */
.Welcome-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 13px 30px;
  font-size: clamp(14px, 1.4vw, 16px);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: white;
  background: linear-gradient(to right, #3E6B4F, #4f8a63);
  border: none;
  border-radius: 40px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

.Welcome-btn:hover {
  background: linear-gradient(to right, #5E9C7F, #6BAF92);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4);
}

@keyframes homeFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*ABOUT PAGE*/
body.about {
  display: block;
  color: white;
}

body.about .header {
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 60px 40px;
  gap: 60px;
  background:
    radial-gradient(circle at top left, #143320 0%, transparent 40%),
    radial-gradient(circle at bottom right, #07351b 0%, transparent 50%),
    linear-gradient(to right, #0f1f17, #304c2a, #2e4f3e);
  overflow: hidden;
}

body.about .header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(107, 175, 146, 0.08), transparent 70%);
  pointer-events: none;
}

body.about .header .mePicture {
  width: 100%;
  max-width: 590px;
  height: 380px;
  background-image: url("../images/me1.webp");
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 22px black;
  margin-left: 35px;
  position: relative;
  z-index: 1;
  margin-top: 15px;
}

body.about .header .RyzaText {
  color: white;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
  text-shadow: 4px 4px 10px black;
  margin-right: 20px;
  position: relative;
  z-index: 1;
}

body.about .header .paragraph {
  grid-column: 1 / -1;
  width: 100vw;
  margin-left: calc(-50vw + 50%);

  margin-top: 5px;
  margin-bottom: 20px;

 padding: 20px 80px;

  color: white;
  font-size: clamp(14px, 1.6vw, 18px);
  text-align: justify;
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;

  background: #44633b;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);

  position: relative;
  z-index: 1;
}

/* SECTIONS */
body.about .bg {
  min-height: 100vh;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

body.about .bg1 {
  position: relative;
  background-image: url("../images/2.webp");
}

body.about .bg2 {
  position: relative;
  background-image: url("../images/3.webp");
}

body.about .bg3 {
  background-image: url("../images/4.webp");
  min-height: 100vh;
}

/* ABOUT BG1 */
body.about .bg1 .H1 {
  padding-top: 45px;
  padding-left: 110px;
  font-size: 40px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: white;
  line-height: 0.9;
  text-shadow: 4px 4px 6px #000000b3;
}

body.about .bg1 .paragraph {
  color: white;
  padding-top: 30px;
  padding-left: 100px;
  padding-right: 800px;
  font-size: 21px;
  text-align: justify;
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  overflow: hidden;
  text-shadow: 2px 2px 6px #000000b3;
}

body.about .bg1 .pic {
  position: absolute;
  top: 70px;
  right: 80px;
  width: 600px;
  height: 600px;
  background-image: url("../images/matchaAndme.webp");
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  border: 5px solid #3E6B4F;
  box-shadow: 0 4px 12px black;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.about .bg1 .pic:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px #1e4b2f;
}

/* ABOUT BG2 */
body.about .bg2 .H2 {
  padding-top: 80px;
  margin-left: 900px;
  color: white;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 60px;
  text-shadow: 5px 2px 5px #000000b3;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

body.about .bg2 .H2:hover {
  transform: translateY(-5px);
  text-shadow: 4px 4px 5px #3E6B4F;
}

body.about .bg2 .paragraph {
  color: antiquewhite;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 1.4;
  font-style: italic;
  text-align: justify;
  padding: 25px;
  margin-left: 880px;
  margin-right: 100px;
}

body.about .bg2 .btn {
  display: inline-block;
  margin-top: 15px;
  margin-left: 900px;
  padding: 12px 30px;
  font-size: 16px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  color: #FFFFFF;
  background-color: #3E6B4F;
  border: none;
  border-radius: 40px;
  box-shadow: 0 6px 18px black;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

body.about .bg2 .btn:hover {
  background-color: #5E9C7F;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px black;
}

/* ABOUT GALLERY */
body.about .bg2 .gallery-container {
  position: absolute;
  top: 180px;
  left: 80px;
  width: 700px;
  overflow: hidden;
}

body.about .bg2 .gallery {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

body.about .bg2 .gallery::-webkit-scrollbar {
  height: 6px;
}

body.about .bg2 .gallery::-webkit-scrollbar-thumb {
  background: #3E6B4F;
  border-radius: 10px;
}

body.about .bg2 .gallery img {
  width: 250px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  flex-shrink: 0;
  scroll-snap-align: start;
  box-shadow: 0 8px 20px black;
  transition: transform 0.3s ease;
}

body.about .bg2 .gallery img:hover {
  transform: scale(1.03);
}
/* ABOUT BG3 */
body.about .bg3 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

body.about .bg3-content {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  width: 100%;
  height: 80%;
}

body.about .bg3-text {
  width: 50%;
  padding-right: 60px;

  margin-left: 45px; 

  color: white;
  font-family: 'Poppins', sans-serif;
  text-shadow: 2px 2px 6px black;
}

body.about .bg3-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  font-style: italic;
  margin-bottom: 20px;
}

body.about .bg3-text p {
  font-size: 20px;
  line-height: 1.6;
  text-align: justify;
}

body.about .bg3 .social-intro {
  margin-bottom: 30px;
  font-size: 18px;
  opacity: 0.9;
}

body.about .bg3 .social-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

body.about .bg3 .social-item {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 50px;
  background: rgba(62, 107, 79, 0.2);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

body.about .bg3 .social-item img {
  width: 28px;
  height: 28px;
}

body.about .bg3 .social-item span {
  color: white;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 1px;
}

body.about .bg3 .social-item:hover {
  background: #3E6B4F;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px black;
}

body.about .bg3-video {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

body.about .bg3-video video {
  width: 320px;
  height: 500px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  transition:
  transform 0.3s ease,
  box-shadow 0.3s ease;
}

body.about .bg3-video video:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}
/*CONTACT PAGE*/
body.contact {
  display: block;
}

body.contact .header {
  min-height: auto;
  padding-bottom: 60px;
  background-image:
    linear-gradient(rgba(20, 35, 25, 0.75), rgba(20, 35, 25, 0.85)),
    url("../images/contact-bg.webp");
}

body.contact .contact-top {
  padding-top: 100px;
}

body.contact .contact-gallery-container {
  width: min(92%, 1200px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

body.contact .contact-gallery {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px;
  background: rgba(0, 0, 0, 0.20);
}

body.contact .contact-gallery::-webkit-scrollbar {
  height: 8px;
}

body.contact .contact-gallery::-webkit-scrollbar-thumb {
  background: #3E6B4F;
  border-radius: 10px;
}

body.contact .contact-gallery img {
  width: min(78vw, 420px);
  height: clamp(190px, 28vw, 260px);
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 18px;
  scroll-snap-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease;
}

body.contact .contact-gallery img:hover {
  transform: scale(1.03);
}

body.contact .contact-form-section {
  width: min(92%, 900px);
  margin: 50px auto 0;
  padding: clamp(20px, 3vw, 35px);
  border-radius: 25px;
  color: white;
  background: rgba(20, 35, 25, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

body.contact .contact-form-section h1 {
  text-align: center;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(30px, 5vw, 48px);
  color: #ffffff;
}

body.contact .contact-form-section p {
  margin-bottom: 30px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.6;
  color: #f5f5f5;
}

body.contact .contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.contact .contact-form label {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

body.contact .contact-form input,
body.contact .contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 14px;
  outline: none;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  background: rgba(255, 255, 255, 0.10);
  color: white;
}

body.contact .contact-form input::placeholder,
body.contact .contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

body.contact .contact-form textarea {
  resize: vertical;
}

body.contact .contact-btn {
  align-self: center;
  margin-top: 10px;
  padding: 14px 34px;
  border: none;
  border-radius: 40px;
  background-color: #3E6B4F;
  color: white;
  font-size: 16px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.30);
}

body.contact .contact-btn:hover {
  background-color: #5E9C7F;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

.success-message {
  display: none;
  margin-top: 25px;
  padding: 22px 20px;
  border-radius: 18px;
  text-align: center;
  background: rgba(62, 107, 79, 0.22);
  border: 1px solid rgba(107, 175, 146, 0.35);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(30px);
  transition:
  transform 0.3s ease,
  box-shadow 0.3s ease;
}

.success-message.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.success-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #3E6B4F;
  color: white;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.success-message h3 {
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-style: italic;
  color: white;
}

.success-message p {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #f5f5f5;
  line-height: 1.6;
}

.contact main {
  min-height: 100vh;
  padding-bottom: 80px; 
}

.contact-form-section {
  margin-top: 40px;
  margin-bottom: 80px; 
}


/* DRINKS & SNACKS PAGE*/
body.drinksNsnacks {
  display: block;
  background:
    linear-gradient(rgba(18, 30, 22, 0.82), rgba(18, 30, 22, 0.88)),
    url("../images/drinksNsnacks-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

body.drinksNsnacks .header {
  min-height: auto;
  padding-bottom: 70px;
  background: transparent;
}

body.drinksNsnacks .menu-page {
  padding: 110px clamp(14px, 4vw, 60px) 50px;
}

body.drinksNsnacks .menu-heading {
  text-align: center;
  margin-bottom: 45px;
}

body.drinksNsnacks .menu-heading h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 58px);
  font-style: italic;
  color: white;
  margin-bottom: 15px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.35);
  margin-top: 0;
  padding-top: 5px;
}

body.drinksNsnacks .menu-heading p {
  max-width: 760px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

body.drinksNsnacks .menu-container-block {
  margin-bottom: 20px;
  padding: clamp(20px, 3vw, 35px);
  background: rgba(10, 18, 13, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

body.drinksNsnacks .section-heading {
  margin-bottom: 28px;
}

body.drinksNsnacks .section-heading h2 {
  padding-left: 15px;
  margin-bottom: 8px;
  border-left: 5px solid #6BAF92;
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  color: white;
}

body.drinksNsnacks .section-heading p {
  margin-left: 0;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 1.5vw, 16px);
  color: rgba(255, 255, 255, 0.82);
}

body.drinksNsnacks .menu-grid-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
  padding: 0;
}

body.drinksNsnacks .menu-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}

body.drinksNsnacks .menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
}

body.drinksNsnacks .menu-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #0f1f17;
  padding: 12px;
}

body.drinksNsnacks .menu-card-body {
  padding: 16px 16px 18px;
}

body.drinksNsnacks .menu-card-body h3 {
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 1.4vw, 13px);
  font-weight: 600;
  color: white;
}

body.drinksNsnacks .menu-card-body p {
  min-height: 60px;
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(12px, 1.3vw, 11px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

body.drinksNsnacks .menu-card-btn {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 30px;
  background: #3E6B4F;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: 0.3s ease;
}

body.drinksNsnacks .menu-card-btn:hover {
  background: #6BAF92;
  transform: translateY(-2px);
}

body.drinksNsnacks .menu-label {
  display: inline-block;
  margin-bottom: 10px;
  margin-top: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #d5f3e1;
  background: rgba(107, 175, 146, 0.18);
  border: 1px solid rgba(107, 175, 146, 0.35);
  letter-spacing: 0.5px;
}

/* RECIPE PAGE */
body.recipe-page {
  background: #364238;
}

.recipe-content {
  background: linear-gradient(to bottom, #4a584e, #364238);
  padding: 120px clamp(14px, 3vw, 32px) 55px;
}

.recipe-menu-section {
  margin-bottom: 55px;
}

.recipe-section-header {
  display: flex;
  justify-content: center;
}

/* UPDATED LABEL */
.recipe-section-header h2 {
  text-align: center;

  padding: 10px 24px;

  border-radius: 30px;

  margin: 0 0 14px;

  transform: translateY(-14px);

  font-family: 'Playfair Display', serif;
  font-style: italic;
  letter-spacing: 1px;

  color: #f6f1e8;

  background: linear-gradient(
    to right,
    rgba(62,107,79,.75),
    rgba(107,175,146,.5)
  );

  border: 1px solid rgba(168, 213, 186, 0.25);

  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.recipe-cards-wrapper,
.drinks-wrapper,
.snacks-wrapper {
  display: grid;

  grid-template-columns: repeat(5, minmax(0, 1fr));

  gap: 20px;

  padding: 0;

  overflow: visible;
}

/* RECIPE CARD */
.recipe-card {
  display: flex;
  flex-direction: column;
  background: #1f2a24;
  border-radius: 19px;
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(255,255,255,.05);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.recipe-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 14px 26px rgba(0, 0, 0, 0.28);
}

/* IMAGE */
.recipe-card img {
  width: 100%;

  aspect-ratio: 4 / 5;

  object-fit: cover;

  background: #152019;

  padding: 18px 8px 7px;

  margin: 0;

  display: block;
}

/* TITLE */
.recipe-card h3 {
  margin: 0;

  padding: 12px 10px 6px;

  font-family: 'Poppins', sans-serif;

  font-size: 13px;

  font-weight: 600;

  color: white;

  line-height: 1.35;

  text-align: left;

  background: #1f2a24;
}

/* REMOVE LABEL */
.recipe-card h3::after {
  display: none;
}

/* BUTTON */
.view-btn {
  display: inline-block;

  width: fit-content;

  margin: 0 10px 10px;

  padding: 8px 15px;

  border-radius: 25px;

  background: #3E6B4F;

  color: white;

  font-family: 'Playfair Display', serif;

  font-size: 12px;

  font-weight: 600;

  text-align: center;

  text-decoration: none;

  transition: 0.3s ease;
}

.view-btn:hover {
  background: #6BAF92;

  transform: translateY(-2px);
}

/* REMOVE DESCRIPTION */
.recipe-card h3 + .view-btn::before {
  display: none;
}

/* RECIPE DETAILS */
.recipe-details-area {
  margin-top: 45px;
}

/* RECIPE DETAIL BOX */
.recipe-detail-box {
  display: none;
  margin-top: 35px;
  background: linear-gradient(to right, #1f2723, #2b3731);
  padding: clamp(20px, 3vw, 35px);
  border-radius: 28px;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.05);
  scroll-margin-top: 100px;
}

.recipe-detail-box:target {
  display: block;
}

.recipe-detail-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.recipe-detail-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #d5f3e1;
  background: rgba(107,175,146,.18);
  border: 1px solid rgba(107,175,146,.35);
}

.recipe-detail-top h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 34px);
  color: white;
  font-style: italic;
}

.recipe-detail-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.recipe-detail-image {
  width: min(100%, 340px);
  flex-shrink: 0;
}

.recipe-detail-image img {
  width: 100%;
  height: clamp(260px, 32vw, 360px);
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

.recipe-detail-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.recipe-detail-intro,
.procedure-box ol,
.ingredients-grid {
  font-family: 'Poppins', sans-serif;
  color: rgba(255,255,255,.92);
  font-size: 14px;
  line-height: 1.8;
}

.recipe-info-card {
  background: rgba(255,255,255,.05);
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.05);
}

.recipe-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2vw, 24px);
  color: white;
  margin-bottom: 14px;
  font-style: italic;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 22px;
  margin-left: 20px;
}

.procedure-box {
  width: 100%;
}

.procedure-box ol {
  margin-left: 20px;
}

.no-result-message {
  display: none;
}

/* TABLET */
@media (max-width: 1024px) {

  .recipe-cards-wrapper,
  .drinks-wrapper,
  .snacks-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .recipe-detail-layout {
    flex-direction: column;
  }

  .recipe-detail-image {
    width: 100%;
  }

  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .recipe-content {
    padding: 125px 14px 45px;
  }

  .recipe-cards-wrapper,
  .drinks-wrapper,
  .snacks-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .recipe-card h3 {
    font-size: 13px;
  }

  .view-btn {
    font-size: 12px;
    padding: 8px 14px;
  }

  .ingredients-grid {
    grid-template-columns: 1fr;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

  .recipe-cards-wrapper,
  .drinks-wrapper,
  .snacks-wrapper {
    grid-template-columns: 1fr;
  }

  .recipe-card {
    max-width: 310px;
    margin: 0 auto;
  }
}

/* CAFE RECOMMENDATION PAGE */
body.recos-page {
  background: linear-gradient(to bottom, #2f3d34, #364238);
  color: white;
}

.recos-main {
  padding: 100px clamp(14px, 3vw, 20px) 40px;
  max-width: 1300px;
  margin: 0 auto;
}

/* INTRO */
.recos-intro {
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
}

.recos-intro-box {
  width: 100%;
  max-width: 950px;
  padding: clamp(24px, 4vw, 40px) clamp(20px, 4vw, 35px);
  text-align: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.recos-tag {
  display: inline-block;
  margin-bottom: 15px;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(107, 175, 146, 0.18);
  border: 1px solid rgba(107, 175, 146, 0.35);
  color: #d8f3e4;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.recos-intro-box h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 54px);
  font-style: italic;
  color: white;
  margin-bottom: 16px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
}

.recos-intro-box p {
  max-width: 760px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
}

/* CATEGORY NAV */
.recos-category-nav {
  position: sticky;
  top: 75px;
  z-index: 50;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 auto 35px;
  padding: 12px 18px;
  width: fit-content;
  border-radius: 50px;
  background: rgba(20, 30, 24, 0.82);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.recos-category-nav a {
  padding: 9px 18px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  background: rgba(107, 175, 146, 0.14);
  transition: 0.3s ease;
}

.recos-category-nav a:hover {
  background: #6BAF92;
  color: #132018;
  transform: translateY(-2px);
}

/* GROUPS */
.recos-group {
  margin-bottom: 45px;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(20, 30, 24, 0.55);
  border-radius: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.recos-group h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 34px);
  color: white;
  margin-bottom: 10px;
  font-style: italic;
}

.group-description {
  max-width: 900px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 22px;
}

/* CAFE CARDS */
.cafe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.cafe-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  min-height: 125px;
  background: linear-gradient(145deg, #17231c, #203228);
  color: white;
  text-decoration: none;
  padding: 20px 18px;
  border-radius: 18px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border: 1px solid rgba(107, 175, 146, 0.12);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  transition: 0.3s ease;
  overflow: hidden;
}

.cafe-card::before {
  display: none;
}

.cafe-card img {
  width: 42px;
  height: 42px;
  max-width: 42px;
  max-height: 42px;
  object-fit: contain;
  border-radius: 50%;
  padding: 4px;
  background: rgba(255, 255, 255, 0.10);
  position: relative;
  z-index: 1;
}

.cafe-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(107, 175, 146, 0.18), transparent 55%);
  opacity: 0;
  transition: 0.3s ease;
}

.cafe-card span,
.cafe-card small {
  position: relative;
  z-index: 1;
}

.cafe-card span {
  font-size: 14px;
  line-height: 1.3;
}

.cafe-card small {
  padding: 4px 10px;
  border-radius: 20px;
  color: #d8f3e4;
  background: rgba(107, 175, 146, 0.16);
  font-size: 11px;
  font-weight: 500;
}

.cafe-card:hover {
  transform: translateY(-6px);
  border-color: rgba(143, 211, 172, 0.55);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.cafe-card:hover::after {
  opacity: 1;
}

/* CAFE DETAILS */
.cafe-detail {
  display: none;
  margin-top: 40px;
  background: linear-gradient(to right, #1f2723, #2b3731);
  padding: clamp(20px, 3vw, 35px);
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  position: relative;
  z-index: 2;
}

.cafe-detail:target {
  display: block;
}

.detail-top-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.detail-logo {
  width: 46px;
  height: 46px;
  max-width: 46px;
  max-height: 46px;
  object-fit: contain;
  border-radius: 50%;
  padding: 5px;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.30);
}

.detail-top-bar h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 32px);
  color: white;
}

.detail-back-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  overflow: hidden;
  transition: 0.3s ease;
}

.detail-back-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-back-btn:hover {
  transform: translateY(-2px);
}

.detail-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* SLIDER */
.detail-slider {
  width: min(100%, 340px);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.detail-slider input {
  display: none;
}

.slides {
  display: flex;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.slides::-webkit-scrollbar {
  display: none;
}

.slides img {
  flex: 0 0 100%;
  width: 100%;
  height: clamp(240px, 30vw, 340px);
  object-fit: cover;
  scroll-snap-align: start;
}

.slider-dots {
  display: none;
}

.photo-credit {
  position: absolute;
  bottom: 12px;
  right: 15px;
  font-size: 11px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.45);
  padding: 4px 10px;
  border-radius: 12px;
  pointer-events: none;
}

/* DETAIL INFO */
.detail-info {
  flex: 1;
  padding-top: 5px;
}

.detail-info p {
  font-family: 'Poppins', sans-serif;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: clamp(13px, 1.4vw, 15px);
  color: rgba(255, 255, 255, 0.92);
}

/* SOCIAL LINKS */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.detail-info .social-links a {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 1.4vw, 14px);
  background: rgba(62, 107, 79, 0.22);
  border: 1px solid rgba(107, 175, 146, 0.18);
  transition: 0.3s ease;
}

.detail-info .social-links a:hover {
  background: #3E6B4F;
  color: white;
  transform: translateX(4px);
}

.social-links img {
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
  object-fit: contain;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  color: white;
  background: #3E6B4F;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: 0.3s ease;
}

.back-to-top:hover {
  background: #6BAF92;
  color: #132018;
  transform: translateY(-4px);
}

/* RESPONSIVENESS */

.mobile-search-logo,
.mobile-search-toggle,
.mobile-search-bar {
  display: none;
}

.home-search-results,
#recipeSearchResults,
#mobileSearchResults,
#mobileRecipeSearchResults {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  min-height: 50px;
  max-height: 160px;
  overflow-y: auto;
  display: none;
}

body.recipe-page {
  min-height: 100vh;
}

body.recipe-page .recipe-content {
  min-height: calc(100vh - 160px);
}

.recipe-search-section {
  position: relative;
}

#recipeSearchResults {
  position: absolute !important;
  top: 110%;
  left: 0;
  width: 100%;
  z-index: 999;
}

/* TABLET */
@media (max-width: 1024px) {
  .navbar {
    height: auto;
    min-height: 78px;
    padding: 10px 18px;
    flex-wrap: nowrap;
    gap: 10px;
    position: fixed;
    justify-content: space-between;
    align-items: center;
  }

  .nav-logo {
    position: static;
    display: flex !important;
    align-items: center;
    flex-shrink: 0;
    margin-right: 8px;
  }

  .nav-logo img {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    max-width: 48px;
    max-height: 48px;
  }

  .navbar ul,
  .nav-links {
    flex: 1;
    width: auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 2px;
    min-width: 0;
    padding: 0;
  }

  .navbar ul li,
  .nav-links li {
    flex: 1;
    text-align: center;
    margin: 0;
  }

  .navbar a,
  .nav-links a {
    padding: 9px 4px;
    font-size: 12px;
    letter-spacing: 0.2px;
    border-bottom-width: 2px;
    white-space: nowrap;
  }

  .navbar-search {
    display: none !important;
  }

  .home-search-wrapper,
  .recipe-search-wrapper,
  .mobile-search-logo {
    display: none !important;
  }

  .mobile-search-toggle {
    display: flex;
    position: fixed;
    top: 95px;
    right: 14px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(46, 79, 61, 0.95);
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
    border: 1px solid rgba(141, 181, 145, 0.18);
    z-index: 99999;
    cursor: pointer;
  }

  .mobile-search-toggle img {
    width: 18px;
    height: 18px;
    object-fit: contain;
  }

  .mobile-search-bar {
    display: none;
    position: fixed;
    top: 95px;
    right: 60px;
    width: calc(100vw - 95px);
    max-width: none;
    min-width: 0;
    z-index: 99998;
  }

  .mobile-search-bar.active {
    display: block;
  }

/* TABLET SEARCH BAR */
.mobile-search-bar input {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid rgba(141, 181, 145, 0.14);
  outline: none;
  border-radius: 30px;
  background: rgba(46, 79, 61, 0.98);
  color: #F5F5F5;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(0,0,0,.14);
}

  body.home {
    overflow: auto;
  }

  body.home .home-main {
    min-height: 100vh;
    padding-top: 175px !important;
    background-position: center;
    overflow: visible !important;
  }

  .Welcome {
    margin-top: 35px !important;
    padding: 0 26px !important;
    align-items: center !important;
    text-align: center !important;
  }

  .Welcome h1 {
    font-size: 56px !important;
    line-height: 0.78 !important;
    margin-bottom: 6px !important;
    letter-spacing: 1px !important;
  }

  .line1 {
    font-size: 44px !important;
    margin-bottom: -24px !important;
    padding-bottom: 0 !important;
    letter-spacing: 1px !important;
  }

  .line2 {
    font-size: 62px !important;
    margin-top: 0 !important;
    transform: translateY(-12px) !important;
    white-space: nowrap !important;
  }

  .Welcome p {
    font-size: 17px !important;
    line-height: 1.7 !important;
    margin-top: 8px !important;
    max-width: 540px !important;
  }

  .Welcome-btn {
    margin-top: 24px !important;
    padding: 15px 34px !important;
    font-size: 16px !important;
    border-radius: 35px !important;
  }

  body.about .header {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 115px 35px 50px;
    gap: 28px;
  }

  body.about .header .mePicture {
    margin: 0 auto;
    height: 330px;
    max-width: 520px;
  }

  body.about .header .RyzaText {
    margin: 0;
  }

  body.about .header .RyzaText h1 {
    font-size: 56px;
    line-height: 0.95;
  }

  body.about .header .paragraph {
    width: 100%;
    margin-left: 0;
    padding: 22px 30px;
    text-align: left;
  }

  body.about .header .paragraph p {
    font-size: 16px;
    line-height: 1.8;
  }

  body.about .bg1,
  body.about .bg2,
  body.about .bg3 {
    min-height: auto;
    padding: 80px 35px;
  }

  body.about .bg1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  body.about .bg1 .H1 {
    order: 1;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 14px;
  }

  body.about .bg1 .H1 h1 {
    font-size: 58px !important;
    line-height: 0.9 !important;
    letter-spacing: 1px !important;
  }

  body.about .bg1 .pic {
    order: 2;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    width: min(75vw, 360px);
    height: min(75vw, 360px);
    margin: 18px auto 24px;
  }

  body.about .bg1 .paragraph {
    order: 3;
    padding: 10px 0;
    max-width: 760px;
    font-size: 16px !important;
    line-height: 1.75 !important;
    text-align: left !important;
    margin-top: 0 !important;
  }

  body.about .bg2 .H2,
  body.about .bg2 .paragraph,
  body.about .bg2 .btn {
    margin-left: 0;
  }

  body.about .bg2 .H2 {
    padding-top: 0;
    font-size: 52px;
    line-height: 0.95;
    text-align: center;
  }

  body.about .bg2 .paragraph {
    margin-right: 0;
    padding: 18px 0;
    text-align: left;
    font-size: 16px;
    line-height: 1.7;
  }

  body.about .bg2 .btn {
    display: block;
    width: fit-content;
    margin: 10px auto 30px;
  }

  body.about .bg2 .gallery-container {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100%;
    margin-top: 30px;
  }

  body.about .bg3-content {
    flex-direction: column;
    gap: 35px;
    align-items: center;
    text-align: center;
  }

  body.about .bg3-text,
  body.about .bg3-video {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  body.about .bg3-text h2 {
    font-size: 52px;
    line-height: 0.95;
    margin-bottom: 18px;
  }

  body.about .bg3-text p,
  body.about .bg3 .social-intro {
    max-width: 620px;
    margin: 0 auto 25px;
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
  }

  body.about .bg3 .social-links {
    align-items: center;
    gap: 14px;
  }

  body.about .bg3 .social-item {
    width: min(100%, 420px);
    justify-content: center;
    padding: 12px 18px;
  }

  body.about .bg3-video video {
    width: 280px;
    height: 460px;
    object-fit: cover;
    border-radius: 24px;
  }

  .recipe-content {
    padding-top: 150px !important;
  }

  .recipe-cards-wrapper,
  .drinks-wrapper,
  .snacks-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .recipe-detail-layout,
  .detail-layout {
    flex-direction: column;
  }

  .recipe-detail-image,
  .detail-slider {
    width: 100%;
  }

  .recipe-detail-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
  }

  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* TABLET ONLY - RECOS PAGE FIX */
@media (min-width: 601px) and (max-width: 1024px) {
  .recos-page .cafe-detail .detail-layout {
    display: flex;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 24px;
  }

  .recos-page .cafe-detail .detail-slider {
    width: 280px !important;
    flex-shrink: 0;
  }

  .recos-page .cafe-detail .detail-slider .slides img {
    width: 280px !important;
    height: 280px !important;
    object-fit: cover !important;
    border-radius: 18px;
  }

  .recos-page .cafe-detail .detail-info {
    flex: 1;
    padding-top: 5px;
  }

  .recos-page .cafe-detail .detail-info p {
    font-size: 15px;
    line-height: 1.7;
  }

  .recos-page .cafe-detail .social-links {
    align-items: flex-start;
    gap: 12px;
  }

  .recos-page .cafe-detail .social-links a {
    justify-content: flex-start;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: auto;
    padding: 6px 8px;
    overflow-x: hidden;
    white-space: nowrap;
  }

  .nav-logo,
  .navbar .nav-logo {
    display: flex !important;
    align-items: center;
    flex-shrink: 0;
    margin-right: 5px;
  }

  .nav-logo img,
  .navbar .nav-logo img {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
  }

  .navbar ul,
  .nav-links {
    flex: 1;
    width: auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    min-width: 0;
    min-height: auto;
    padding: 0;
    gap: 1px;
  }

  .navbar ul li,
  .nav-links li {
    flex: 1;
    text-align: center;
    margin: 0;
  }

  .navbar a,
  .nav-links a {
    padding: 8px 1px;
    font-size: 8.5px;
    letter-spacing: 0.2px;
    border-bottom-width: 2px;
  }

  .mobile-search-toggle {
    top: 72px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .mobile-search-bar {
    top: 72px;
    right: 52px;
    width: calc(100vw - 75px);
    max-width: none;
    min-width: 0;
  }

  body.home .home-main {
    min-height: 100vh;
    padding-top: 145px !important;
    background-position: left center;
    overflow: visible !important;
  }

  .Welcome {
    margin-top: 20px !important;
    padding: 0 22px !important;
    align-items: center !important;
    text-align: center !important;
  }

  .Welcome h1 {
    font-size: 32px !important;
    line-height: 0.9 !important;
    margin-bottom: 0 !important;
    letter-spacing: 1px;
  }

  .line1 {
    font-size: 30px !important;
    margin-bottom: -12px !important;
    padding-bottom: 0 !important;
    letter-spacing: 1px !important;
  }

  .line2 {
    font-size: 35px !important;
    margin-top: 0 !important;
    transform: translateY(-6px) !important;
    white-space: nowrap !important;
  }

  .Welcome p {
    font-size: 13px !important;
    line-height: 1.6 !important;
    margin-top: 8px !important;
    max-width: 330px !important;
  }

  body.about .header {
    padding: 110px 22px 40px;
    gap: 22px;
  }

  body.about .header .RyzaText h1 {
    font-size: 55px;
    line-height: 0.95;
  }

  body.about .header .mePicture {
    height: 220px;
    max-width: 260px;
    margin: 0 auto;
  }

  body.about .header .paragraph {
    padding: 18px;
  }

  body.about .header .paragraph p {
    font-size: 14px;
    line-height: 1.7;
  }

  body.about .bg1,
  body.about .bg2,
  body.about .bg3 {
    padding: 65px 22px 45px;
  }

  body.about .bg1 .H1,
  body.about .bg1 .H1 h1 {
    font-size: 38px !important;
    line-height: 0.95 !important;
    margin-bottom: 14px !important;
    letter-spacing: 1px !important;
  }

  body.about .bg1 .pic {
    width: min(78vw, 290px) !important;
    height: min(78vw, 290px) !important;
    margin: 18px auto 24px !important;
  }

  body.about .bg1 .paragraph {
    margin-top: 0 !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    padding: 8px 0 !important;
    text-align: left !important;
  }

  body.about .bg2 .H2 {
    font-size: 36px;
    line-height: 0.95;
    text-align: center;
    margin-bottom: 10px;
  }

  body.about .bg2 .paragraph {
    font-size: 14px;
    line-height: 1.65;
    padding: 10px 0;
    text-align: left;
  }

  body.about .bg2 .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
    font-size: 13px;
    padding: 11px 18px;
    margin: 10px auto 25px;
  }

  body.about .bg2 .gallery-container {
    margin-top: 22px;
  }

  body.about .bg2 .gallery {
    gap: 14px;
  }

  body.about .bg2 .gallery img {
    width: 210px;
    height: 260px;
  }

  body.about .bg3 {
    padding-top: 60px !important;
  }

  body.about .bg3-content {
    flex-direction: column;
    gap: 26px;
    text-align: center;
    align-items: center;
  }

  body.about .bg3-text {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  body.about .bg3-text h2 {
    font-size: 36px;
    line-height: 0.95;
    margin-bottom: 14px;
  }

  body.about .bg3-text p,
  body.about .bg3 .social-intro {
    font-size: 14px;
    line-height: 1.6;
    text-align: center !important;
    max-width: 290px;
    margin: 0 auto 20px;
  }

  body.about .bg3 .social-links {
    gap: 12px;
    align-items: center;
  }

  body.about .bg3 .social-item {
    width: 100%;
    max-width: 290px;
    padding: 10px 14px;
    gap: 10px;
    border-radius: 28px;
    justify-content: center;
  }

  body.about .bg3 .social-item img {
    width: 22px;
    height: 22px;
  }

  body.about .bg3 .social-item span {
    font-size: 13px;
    letter-spacing: 0.3px;
    word-break: break-word;
  }

  body.about .bg3-video {
    width: 100% !important;
    padding: 0 !important;
    display: flex;
    justify-content: center;
  }

  body.about .bg3-video video {
    width: 220px;
    height: 360px;
    border-radius: 22px;
  }

  .recipe-content {
    padding-top: 145px !important;
  }

  .recipe-cards-wrapper,
  .drinks-wrapper,
  .snacks-wrapper {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .recipe-card {
    width: 100% !important;
    max-width: 330px !important;
    margin: 0 auto !important;
  }

  .recipe-card img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 5 !important;
    object-fit: cover !important;
    padding: 12px 8px 3px !important;
  }

  .recipe-card h3 {
    font-size: 14px !important;
    padding: 10px 12px 4px !important;
  }

  .view-btn {
    margin: 0 12px 10px !important;
  }

  .ingredients-grid {
    grid-template-columns: 1fr;
  }
}

/* STRONGER IPAD / TABLET SIZE FIX */
@media (min-width: 601px) and (max-width: 1024px) {

  /* HOME PAGE BIGGER TEXT */
  body.home .home-main {
    padding-top: 170px !important;
  }

  body.home .Welcome {
    margin-top: 70px !important;
    padding: 0 55px !important;
  }

  body.home .Welcome h1 {
    font-size: 95px !important;
    line-height: 0.82 !important;
  }

  body.home .line1 {
    font-size: 72px !important;
    margin-bottom: -28px !important;
  }

  body.home .line2 {
    font-size: 80px !important;
    transform: translateY(-10px) !important;
  }

  body.home .Welcome p {
    font-size: 24px !important;
    line-height: 1.7 !important;
    max-width: 760px !important;
    margin-top: 22px !important;
  }

  body.home .Welcome-btn {
    font-size: 20px !important;
    padding: 18px 42px !important;
    margin-top: 35px !important;
  }

  /* ABOUT PAGE BIGGER TEXT */
  body.about .header {
    padding: 130px 55px 90px !important;
    gap: 45px !important;
  }

  body.about .header .mePicture {
    width: 580px !important;
    max-width: 82vw !important;
    height: 400px !important;
    margin: 0 auto 35px !important;
  }

  body.about .header .RyzaText h1 {
    font-size: 155px !important;
    line-height: 0.82 !important;
    margin: 35px 0 45px !important;
  }

  body.about .header .paragraph {
    max-width: 880px !important;
    padding: 40px 48px !important;
  }

  body.about .header .paragraph p {
    font-size: 22px !important;
    line-height: 1.9 !important;
  }

  body.about .bg1 .H1 h1 {
    font-size: 105px !important;
    line-height: 0.85 !important;
  }

  body.about .bg1 .pic {
    width: 430px !important;
    height: 430px !important;
    margin: 45px auto 50px !important;
  }

  body.about .bg1 .paragraph {
    max-width: 880px !important;
    font-size: 22px !important;
    line-height: 1.9 !important;
    text-align: center !important;
  }
}

/* IPAD / TABLET - FINAL RECIPE DETAIL FIX */
@media (min-width: 601px) and (max-width: 1024px) {

  /* BIGGER NAVBAR TEXT */
  .navbar a,
  .nav-links a {
    font-size: 15px !important;
    padding: 10px 8px !important;
    letter-spacing: 0.5px !important;
  }

  .nav-links {
    gap: 8px !important;
  }

  /* RECIPE DETAIL LAYOUT */
  .recipe-detail-layout,
  .detail-layout {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 30px !important;
  }

  /* IMAGE SIDE */
  .recipe-detail-image,
  .detail-slider {
    width: 42% !important;
    flex-shrink: 0 !important;
  }

  .recipe-detail-image img,
  .detail-slider img,
  .detail-slider .slides img {
    width: 100% !important;
    height: 420px !important;
    object-fit: cover !important;
    border-radius: 18px !important;
  }

  /* TEXT SIDE */
  .recipe-detail-info,
  .detail-info {
    width: 58% !important;
    flex: 1 !important;
  }

  /* INGREDIENTS + PROCEDURE STACKED CLEANLY */
  .ingredients-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .ingredients-grid table,
  .ingredients-grid .procedure,
  .ingredients-grid .ingredients {
    width: 100% !important;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {

  .recipe-content {
    padding-top: 190px !important;
  }

  .recipe-title,
  .recipe-header h1,
  .drinks-title {
    margin-top: 35px !important;
  }
}

/* IPAD / TABLET - SEARCH BAR SPACING */
@media (min-width: 601px) and (max-width: 1024px) {

  .mobile-search-toggle {
    top: 105px !important;
  }

  .mobile-search-bar {
    top: 102px !important;
  }
}