@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');


:root{
  --black: #1B1722;
  --white : #F0F0F0;
  --box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}


*{
  font-family: 'Quicksand' , sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: all .2s linear;
}




/* Global Styling */
html{
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}







body {
  background: var(--white);
  color: var(--black);
}
/* Header/Navbar */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #b72f25 0%, #Ffd9d9 100%);
  padding: 1rem 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}







/* Logo with image */
header .logo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  margin-right: 3rem; /* push nav away from logo */
}
header .logo-img {
  object-fit: cover;
  border-radius: 8px;
 
}




/* Navbar */
header .navbar {
  display: flex;
  gap: 2rem;
}
header .navbar a {
  font-size: 1.5rem;
  color: var(--black);
  text-decoration: none;
}
header .navbar a:hover {
  color: crimson;
}


/* ========================
   Search Bar Styles
   ======================== */
.search {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  flex: 1;
  max-width: 500px;
}
.search input {
  flex: 1;
  padding: 1rem 1.2rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1.5rem;
}
.search input:focus {
  border-color: crimson;
  box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.15);
}
.search .search-btn {
  padding: 1rem 1.4rem;
  background: crimson;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.3s ease;
}
.box.highlighted {
  border: 2px solid #d32f2f;
  background-color: #ffeaea;
  box-shadow: 0 0 10px rgba(211, 47, 47, 0.3);
}


.suggestions-box {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  border-radius: 0 0 8px 8px;
}


.suggestions-box div {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}


.suggestions-box div:hover {
  background-color: #f5f5f5;
}













/* Home section offset for fixed header */
.home{
  padding-top: 9rem;
}
.background-video{
  width: 100%;
  height: auto;
  display: block;
}
















/* full-height hero with video covering all */
.home {
    position: relative;
    min-height: 100vh;
    padding-top: 10rem;
    display: grid;
    place-items: center;
    overflow: hidden;
}








/* Video: cover the entire hero */
.background-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}








/* Overlay content on top */
.home .homeContent{
    position: relative;
    z-index: 1;
    width: min(900px, 90%);
    text-align: center;
    padding: 4rem 2rem;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.home .homeContent h2{
    font-size: 7rem;
    font-weight: bolder;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #fff;
    text-shadow: var(--box-shadow);
}
.home .homeContent p{
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.home .homeContent .home-btn button{
    font-size: 1.8rem;
    background-color: #fff;
    color: black;
    border-radius: .7rem;
    padding: .9rem 2.4rem;
    cursor: pointer;
    font-weight: 800;
}
.home .homeContent .home-btn button:hover{
    font-size: 2rem;
}
section{
    padding: 2rem 7%;
}
.heading{
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: var(--black);
}
.heading h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #222;
  font-weight: 700;
}
















 
















.story-cards {
  padding: 4rem 7%;
  background: #fff;
}


.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: crimson;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.card-row {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}


.story-card {
  min-width: 300px;
  max-width: 350px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  scroll-snap-align: start;
  flex-shrink: 0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}


.story-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}


.story-card:hover img {
  transform: scale(1.05);
}


.card-text {
  padding: 1rem;
  transition: background 0.3s ease;
}


.story-card:hover .card-text {
  background: #fffbe6;
}


.card-text h4 {
  font-size: 0.9rem;
  color: crimson;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}


.card-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}


.card-text p {
  font-size: 0.9rem;
  line-height: 1.5;
}








/* blogs section only */
.blogs {
  padding: 5rem 2rem;
  background-color: #f9f9f9;
  font-family: 'Quicksand', sans-serif;
}


.blogs .heading {
  text-align: center;
  font-size: 3.6rem;
  margin-bottom: 3rem;
  font-weight: 700;
}


.blogs .heading span {
  color: #d32f2f;
}


.blogs-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 350px));
  gap: 20px;
  justify-content: center; /* centers the grid on large screens */
}


.blogs-row .box {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}




.blogs-row .box:hover {
  transform: translateY(-8px);
}


.image-wrapper {
  height: 280px;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}


.image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 0.5rem;
}






.category {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}


.category.pink { color: #e91e63; }
.category.orange { color: #ff9800; }
.category.blue { color: #2196f3; }


.blogs-row .box h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #222;
}


.meta {
  font-size: 1.4rem;
  color: #777;
  margin-bottom: 1rem;
}


.desc {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #333;
}


.btn {
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  text-decoration: none;
  color: white;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem; 
}


.btn.pink { background-color: #e91e63; }
.btn.orange { background-color: #ff9800; }
.btn.blue { background-color: #2196f3; }


.btn:hover {
  opacity: 0.9;
}






.blog2 {
  padding: 4rem 7%;
  background: #f9f9f9;
}


.blog2 .heading h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #333;
}


.blog2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}


.blog2-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  color: white;
  height: 400px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog2-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* or use 'contain' if you want full image */
  z-index: 1;
}
.blog2-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  padding: 1.5rem;
  width: 100%;
  color: white;
}
.blog2-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


.blog2-content .category {
  font-size: 0.9rem;
  font-weight: bold;
  color: #Ffd9d9;
  text-transform: uppercase;
}


.blog2-content h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}
.blog2-card:hover h3 {
  color: #Ffd9d9;
}


.blog2-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}


.author-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}


.blog2-icons {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  display: flex;
  gap: 1rem;
}






















.reviews {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #fff;
}


.reviews h2 {
  font-size: 3rem;
  margin-bottom: 4rem;
  font-weight: 600;
}


.reviews-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}


.review-section {
  overflow-x: auto;
  padding: 2rem 1rem;
}


.review-scroll {
  display: flex;
  gap: 2rem;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  padding-bottom: 1rem;
}


.review-card {
   background: #fff;
   border-radius: 1rem;
   box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
   padding: 2rem;
   min-width: 320px;
   max-width: 320px;
   scroll-snap-align: start;
   flex-shrink: 0;
   font-size: 1.4rem;
   transition: transform 0.3s ease; box-shadow: 0.3s ease;
}


/* Hover effect */
.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}




.stars {
  color: #f5b50a;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}


.profile {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}


.profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}


.info strong {
  display: block;
  font-size: 1rem;
}


.info span {
  font-size: 0.85rem;
  color: #777;
}


.review-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
}
























/* ───────────────────────────────────────────────
   Space App Section
──────────────────────────────────────────────── */
.spaceman-app {
  padding: 4rem 2rem;
  background: white;
}




.spaceman-app .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: none; /* keeps lowercase “spaceman app” */
}




/* Container for the three phones */
.spaceman-app .screens {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15rem;
}




/* Pure-CSS phone mockup */
.spaceman-app .phone-mockup {
  width: 240px;
  height: 480px;
  border: 12px solid #222;
  border-radius: 36px;
  background: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}




.spaceman-app .phone-mockup:hover {
  transform: scale(1.05);
}
.spaceman-app .phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.spaceman-app .phone-wrapper {
  text-align: center;
  max-width: 240px;
}


.spaceman-app .phone-wrapper p {
  margin: 8px 0;
  font-size: 16px;
  color: #000; /* or #333 if you want dark text */
}


.spaceman-app .phone-wrapper i {
  margin-right: 6px;
  color: #e1306c; /* Instagram pink — change per platform */
}


















































/* Container */
.contact-section {
  background-color: #fff;
  color: #fff;
  padding: 4rem 1rem;
  font-family: 'Quicksand', sans-serif;
}




/* Top cards */
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}




.contact-cards .card {
  background-color: #5a1a1c;
  flex: 1 1 200px;
  max-width: 250px;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}




.contact-cards h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}




/* Form section */
.contact-form {
  background: #5a1a1c;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 8px;
}




.contact-form h2 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  text-align: center;
}




/* Inputs & textarea */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
}




.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #333;
}




/* Submit button */
.contact-form button {
  display: block;
  width: 100%;
  padding: 0.85rem;
  background-color: #fff;
  color: #1B1722;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}




.contact-form button:hover {
  background-color: black;
}
.contact-cards .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}




.contact-cards .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}




































/* =====================
   Footer + Map Section
   ===================== */




.footer-map {
  background: #5a1a1c;
  color: #fff;
  padding-top: 4rem;
  font-family: 'Quicksand', sans-serif;
}








.footer-content {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  padding: 0 1rem;
}








/* Contact Info */
.contact-info {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}








.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}








.contact-item i {
  font-size: 1.5rem;
  margin-top: 0.2rem;
  color: #000;
}








.contact-item h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}








.contact-item p {
  margin: 0;
  line-height: 1.4;
  font-size: 0.95rem;
}








/* Map */
.container {
  padding: 4rem 7%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}


.container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
















/* Footer Bottom */
.footer-bottom {
  background: #000;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
    min-height: 200px; /* ensures space */
    margin-bottom: 21rem;

}











.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #ccc;
}
/* Social Media Bar */
.social-media {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}








.social-media a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}








.social-media a:hover {
  color: #000;
}






/* Location & Social Section */
.location-social {
  background-color: #660000;
  padding: 1.5rem 1rem 1rem; /* reduced bottom padding */
  text-align: center;
}

/* Map */
.map-wrapper {
  margin-bottom: 1rem;
}

.map-wrapper iframe {
  width: 100%;
  max-width: 100%;
  height: 250px; /* reduced height */
  border: none;
  border-radius: 6px;
  display: block;
  margin: 0 auto;
}

/* Social Media Icons */
.social-media {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 0.5rem;
}

.social-media a {
  color: #ffcccb;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.social-media a:hover {
  color: #fff;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 0.8rem 0;
  border-top: 1px solid #990000;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #ccc;
}




/* Copyright Section */
.site-copyright {
  background-color: #000;
  text-align: center;
  padding: 0.8rem 0;
}

.site-copyright p {
  margin: 0;
  font-size: 0.85rem;
  color: #ccc;
}












































































.swiper-pagination-bullet{
    background-color: var(--black);
}
.swiper-button-next{
    color: var(--black);
}
.swiper-button-prev{
    color: var(--black);
}






/* ================= MEDIA QUERIES ================= */

/* Tablet & Small Laptops */
@media (max-width: 991px) {
  html { font-size: 58%; }
  header { padding: 1.3rem 2rem; }
}

/* Tablets & Large Phones */
@media (max-width: 768px) {
  #menu-bar {
    display: inline-block;
  }

  header .navbar {
    position: absolute;
    top: 100%;
    right: -100%;
    background: var(--white);
    width: 250px;
    height: 80vh;
    transition: right 0.3s ease;
    flex-direction: column;
    padding: 2rem;
    z-index: 1000;
  }

  header .navbar.active {
    right: 0;
  }

  header .navbar a {
    display: block;
    font-size: 2rem;
    margin: 1.5rem 0;
    color: var(--black);
  }

  .search-wrapper {
    max-width: 90%;
    margin: 1rem auto;
  }

  .home .homeContent {
    margin-left: 0;
    width: 90%;
    text-align: center;
  }

  .blogs-row,
  .blog2-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .blogs-row .box,
  .blog2-card {
    width: 100%;
  }

  .blog2-grid {
    grid-template-columns: repeat(1, 1fr); 
  }
  .blog2-meta .author-img {
    width: 24px;
    height: 24px;
  }
  .blog2-img {
    object-fit: contain; /*shows full image without cropping */
    height: 100%;
    width: 100%;
  }
  .blog2-card {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 500px;
  }
}


/* Phones */
@media (max-width: 600px) {
  html { font-size: 55%; }

  button,
  .search .search-btn {
    padding: 1.2rem 1.8rem;
    font-size: 1.6rem;
  }

  /* Still 3 per row on smaller phones */
  .blogs-row,
  .blog2-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
    gap: 1.5rem; /* spacing between cards */
    padding: 1rem;
  }

  .blogs-row .box,
  .blog2-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 1rem;
    text-align: center;
  }

  .blogs-row img,
  .blog2-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
  }

  .blogs-row h3,
  .blog2-card h3 {
    font-size: 1.8rem;
    margin: 0.8rem 0;
  }

  .blogs-row p,
  .blog2-card p {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .price-tag {
    font-size: 1.6rem;
    font-weight: bold;
    color: #d32f2f;
  }


  .blog2-grid {
    grid-template-columns: repeat(1, 1fr); /*One card per row on phones */
  }
  .blog2-meta .author-img {
    width: 20px;
    height: 20px;
  }
  .blog2-img {
    object-fit: contain; /*shows full image without cropping */
    height: 100%;
    width: 100%;
  }
  .blog2-card {
    background-size: contain; /* shows full image */
    background-repeat: no-repeat;
    background-position: center;
    min-height: 450px; /* give it space to show full image */
  }
}

/* Small Phones */
@media (max-width: 480px) {
  html { font-size: 50%; }

  header .navbar a { font-size: 1.6rem; }
  .home .homeContent h2 { font-size: 3.8rem; }
  .home .homeContent p { font-size: 1.3rem; }

  /* Keep 3 per row, but make boxes smaller */
  .blogs-row,
  .blog2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .blog2-grid {
    grid-template-columns: repeat(1, 1fr); /*Still one per row */
  }
  .blog2-meta .author-img {
    width: 18px;
    height: 18px;
  }
  .blog2-img {
    object-fit: contain;
    height: 100%;
    width: 100%;
  }
  .blog2-card {
    background-size: contain; /*shows full image */
    background-repeat: no-repeat;
    background-position: center;
    min-height: 450px; /*gives it space to breathe */
  }
}









@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}  


* {
  box-sizing: border-box;
}


img {
  max-width: 100%;
  height: auto;
}


section {
  padding: 2rem 1rem;
}




/* Beef Page Responsive Layout */

/* ================= Beef page media queries ================= */

/* ======================================
   RESPONSIVE MEDIA QUERIES
   ====================================== */

@media (max-width: 600px) {

    header {
        padding: 1rem 1rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* LOGO + TEXT */
    .logo img {
        width: 45px;
        height: auto;
    }

    .logo {
        font-size: 1.3rem;
        gap: 6px;
        white-space: nowrap;
    }

    /* HAMBURGER */
    #menu-bar {
        display: block;
        font-size: 2rem;
        cursor: pointer;
    }

    /* HIDDEN MOBILE NAV UNTIL CLICKED */
    .navbar {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        margin-top: 1rem;
        padding: 1rem 0;
        border-top: 1px solid #ddd;
    }

    .navbar.active {
        display: flex;
    }

    .navbar a,
    summary {
        font-size: 1.3rem;
        padding: 10px 0;
        text-align: center;
    }

    /* SEARCH BAR FIX */
    #search-form {
        width: 100%;
        padding: 0 1rem;
        flex-direction: column;
        gap: 10px;
    }

    #search-box {
        width: 100%;
    }

    #search-form button {
        width: 100%;
    }

    /* PRODUCT SECTION FIX */
    .blogs {
        margin-top: 24rem !important;
        padding: 1rem !important;
    }

    
/* Optional: keep a separate rule for search state */
.blogs.search-active {
  margin-top: 21rem !important; /* stays the same */
}

    .blogs > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        width: 100% !important;
    }

    .blogs .box {
        width: 95% !important;
        max-width: 360px;
        text-align: center;
    }
}

/* =======================================================
   TABLETS (iPad, 600px – 900px)
======================================================= */
@media (min-width: 600px) and (max-width: 900px) {

    header {
        padding: 1.2rem 2rem;
    }

    #menu-bar {
        display: none; /* full menu visible on tablets */
    }

    .navbar {
        display: flex !important;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .blogs > div {
        flex-wrap: wrap;
        justify-content: center;
    }

    .blogs .box {
        width: 45% !important;
        max-width: none;
    }
}

/* =======================================================
   SMALL LAPTOPS (900px – 1200px)
======================================================= */
@media (min-width: 900px) and (max-width: 1200px) {

    header {
        padding: 1.4rem 3rem;
    }

    .navbar {
        display: flex !important;
        gap: 1.4rem;
    }

    .blogs .box {
        width: 30% !important;
        max-width: none;
    }
}

/* =======================================================
   DESKTOP (1200px+)
======================================================= */
@media (min-width: 1200px) {

    header {
        padding: 1.5rem 4rem;
    }

    .navbar {
        gap: 2rem;
    }

    .blogs .box {
        width: 300px !important;
        max-width: 300px;
    }
}
