/* Global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto Condensed", sans-serif;
}

/* Setting root font size and smooth scrolling */
html {
  font-size: 22px;
  scroll-behavior: smooth;
}

/* Styles for headings */
h1,
h2,
h3,
h4 {
  font-family: "Courier New", Courier, monospace;
}

/* Root variables for color scheme and font sizes */
:root {
  --accent-color: rgb(155, 118, 26);
  --seconery-color: rgb(63, 24, 28);
  --primary-color: #4b2e2b;
  --font-size1: 1rem;
  --font-size2: 1.5rem;
  --font-size3: 2rem;
  --font-size4: 3.5rem;
  --font-size5: 4rem;
  --border-round: 50%;
  --under-line-width: 210px;
}

/* Body background color */
body {
  background-color: rgba(0, 0, 0, 1);
}

body.blurred::before {
  content: ""; /* Required to create the pseudo-element */
  position: fixed; /* Position it relative to the viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); /* Semi-transparent overlay */
  backdrop-filter: blur(5px);
  z-index: 999; /* Place it above the body content */
  pointer-events: none; /* Prevent interaction with the blurred overlay */
}

/* Navbar styles */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  position: fixed;
  width: 100%;
  /* background: linear-gradient(to left, rgba(0, 0, 0, 1) 60%, rgb(0, 0, 0)); */
  background-color: rgba(0, 0, 0, 1);
  min-height: 60px;
  z-index: 5000;
}

a {
  text-decoration: none;
  color: white;
}

/* Menu link styles */
.menu-link {
  transition: 0.3s ease;
  padding: 7px 14px;
  font-size: var(--font-size1);
}

/* Hover effect for menu links */
.menu-link:hover {
  background-color: var(--accent-color);
  border-radius: 5px;
}

/* Logo styles */
.logo {
  position: relative;
  background-image: url("main photos/logo.jpg");
  background-size: cover; /* Ensures the image covers the entire logo container */
  background-position: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  box-sizing: content-box;
}

.logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
  border-radius: 50%; /* Keeps the circular shape */
  pointer-events: none; /* Ensures the overlay doesn't interfere with user interactions */
}
/* Main page layout */
#main-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Navbar menu items */
.navmenu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: var(--font-size2);
  min-width: 50%;
}

/* Search bar styles */
.search-bar {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-bar input {
  padding: 5px;
  font-size: var(--font-size1);
  border: none;
  border-radius: 5px;
  margin-left: 10px;
  width: 150px;
}

.search-bar button {
  background-color: var(--accent-color);
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  color: white;
  font-size: var(--font-size1);
  border-radius: 5px;
}

/* Burger menu button styles */
#burgerBtn {
  font-size: 30px;
  cursor: pointer;
  color: white;
  display: none; /* Hide burger button by default */
}

/* Close button for mobile menu */
#menu-close-button {
  font-size: 30px;
  cursor: pointer;
  color: rgb(60, 6, 6);
  display: none;
  position: absolute;
  right: 14px;
  top: 14px;
}

.navMenu.active #menu-close-button {
  display: none;
}

/* Mobile menu item styles */
.menu-item {
  flex-shrink: 0;
}

.main-container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: fill;
  height: calc(100vh - 60px);
  margin-top: 60px;
  width: 100%;
  background-color: #333;
  background-image: url("gallery/gallery (8).jpeg");
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: opacity 1s ease-in-out; /* Smooth fade effect */
}

.fade {
  opacity: 0; /* Apply fade-out effect */
}

.hero-right {
  width: 60%;
  height: 100%;
}

.hero-content {
  width: 30%;
  height: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  color: whitesmoke;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}
.hero-content h2 {
  font-size: var(--font-size5);
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.hero-content p {
  font-size: var(--font-size1);
  width: 80%;
}

/* Button Of Hero Section */
.hero-content button {
  --black-700: hsla(0 0% 12% / 1);
  --border_radius: 9999px;
  --transtion: 0.3s ease-in-out;
  --offset: 2px;

  cursor: pointer;
  position: relative;

  display: flex;
  align-items: center;
  gap: 0.5rem;

  transform-origin: center;

  padding: 1rem 2rem;
  background-color: transparent;

  border: 2px solid transparent; /* Default border */
  border-radius: var(--border_radius);
  transform: scale(calc(1 + (var(--active, 0) * 0.1)));

  transition: transform var(--transtion), border 0.3s ease-in-out; /* Added border transition */
  scale: 0.8;
}

.button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100%;
  height: 100%;
  background-color: var(--black-700);

  border-radius: var(--border_radius);

  box-shadow: inset 0 0.5px hsl(0, 0%, 100%), inset 0 -1px 2px 0 hsl(0, 0%, 0%),
    0px 4px 10px -4px hsla(0 0% 0% / calc(1 - var(--active, 0))),
    0 4px 10px hsla(0, 3%, 6%, 0.425); /* gray shadow */

  transition: all var(--transtion);
  z-index: 0;
}

.button:is(:hover, :focus-visible) {
  --active: 1;
  background-color: hsla(45, 100%, 40%, 0.9); /* Darker Goldenrod on hover */
  border: 2px solid hsla(45, 100%, 50%, 1); /* Gold border on hover */
}

.button:active {
  transform: scale(1);
}

.button .dots_border {
  --size_border: calc(100% + 2px);

  overflow: hidden;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: var(--size_border);
  height: var(--size_border);
  background-color: transparent;

  border-radius: var(--border_radius);
  z-index: -10;
}

.button .dots_border::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: left;
  transform: rotate(0deg);

  width: 100%;
  height: 2rem;
  background-color: white;

  mask: linear-gradient(transparent 0%, white 120%);
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.button .sparkle {
  position: relative;
  z-index: 10;

  width: 1.75rem;
}

.button .sparkle .path {
  fill: currentColor;
  stroke: currentColor;

  transform-origin: center;

  color: hsl(0, 0%, 100%);
}

.button:is(:hover, :focus) .sparkle .path {
  animation: path 1.5s linear 0.5s infinite;
}

.button .sparkle .path:nth-child(1) {
  --scale_path_1: 1.2;
}
.button .sparkle .path:nth-child(2) {
  --scale_path_2: 1.2;
}
.button .sparkle .path:nth-child(3) {
  --scale_path_3: 1.2;
}

@keyframes path {
  0%,
  34%,
  71%,
  100% {
    transform: scale(1);
  }
  17% {
    transform: scale(var(--scale_path_1, 1));
  }
  49% {
    transform: scale(var(--scale_path_2, 1));
  }
  83% {
    transform: scale(var(--scale_path_3, 1));
  }
}

.button .text_button {
  position: relative;
  z-index: 10;

  background-image: linear-gradient(
    90deg,
    hsla(0 0% 100% / 1) 0%,
    hsla(0 0% 100% / var(--active, 0)) 120%
  );
  background-clip: text;

  font-size: 1rem;
  color: transparent;
}

/*Style for about section */
.about {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("main photos/testmonial.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  border: 3px solid black;

  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-top: 72px;
  padding-bottom: 32px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.about-content h2 {
  font-size: var(--font-size3);
  color: white;
  text-decoration: underline;
  text-underline-offset: 12px;
}

.about-content {
  text-align: center;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 7px;
}

.about::before {
  display: none;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  aspect-ratio: 1;
  background-color: rgb(215, 214, 214);
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  transform: translateX(40%);
  z-index: 5;
}

.about-content p {
  color: white;
  line-height: 4rem;
  font-size: var(--font-size4);
  padding: 50px;
  text-align: center;
  z-index: 10;
}

.social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 16px;
  z-index: 10;
}
.social-icon {
  height: 70px;
  width: 70px;
  padding: 7px;
}

.social-icon img {
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}

.social-icon:hover img {
  scale: 1.1;
  cursor: pointer;
}
.about-image-wrapper {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-wrapper img {
  width: 400px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

/*style for cafee menu section*/
.cafee-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #262626;
  padding-bottom: 36px;
}
.view-menu-btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(
    135deg,
    #ff416c,
    #ff4b2b
  ); /* Attractive gradient */
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.view-menu-btn:hover {
  background: linear-gradient(135deg, #ff4b2b, #ff416c);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.view-menu-btn:active {
  transform: scale(0.95);
}

.cafee-menu h1 {
  color: white;
  margin-top: 120px;
  font-size: var(--font-size3);
  position: relative;
  padding: 16px;
  color: goldenrod;
}

.menu-content {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  justify-content: center;
  padding: 30px;
}

.card {
  font-family: Arial, sans-serif;
  min-width: 290px;
  width: 20%;
  height: auto;
  background-color: #262626;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  margin: 1% 1.5%;
  text-align: center;
  border: 2px solid black;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px 5px #b79664;
}

.card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px 10px 0 0;
}

.card-content {
  padding: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  display: none;
}

.card-title {
  font-size: 16px;
  margin-bottom: 10px;
  color: white;
}

.card-description {
  font-family: sans-serif;
  font-size: 0.8rem;
  color: white;
}

/* style for testimonial*/

.testimonail {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  overflow: hidden;
  gap: 44px;
  min-height: 100vh;
  /* background:whitesmoke; */
  padding-top: 100px;
  background-image: url("main photos/testmonial.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonail h1 {
  text-align: center;
  color: white;
  font-size: var(--font-size3);
  font-weight: bolder;
  padding: 8px 32px;
  border-radius: 7px;
  backdrop-filter: blur(5px);
  display: none;
}

/* style for swipper section */
.swiper-main {
  display: flex;
  height: 80%;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  /* box-shadow: 0 8px px rgba(0, 0, 0, 0.2); */
  /* background: rgba(0, 0, 0, 0.5); */
  padding: 44px 36px 36px 36px;
  width: 90%;
}

.swiper-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  width: 90%;
}

.swiper-wrapper {
  display: flex;
  overflow: hidden;
  cursor: grab;
  gap: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-wrapper:active {
  cursor: grabbing;
}

.swiper-slide {
  width: calc((100% / 3.5));
  min-height: 350px;
  flex-shrink: 0;
  margin: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 20px; /* Rounded corners */
  padding: 30px; /* Padding inside the card */
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8); */ /* Shadow for depth */
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 16px; /* Adjusted font size */
  font-weight: normal; /* Lighter font weight */
  transition: 0.4s ease-in-out;
}

.stars {
  color: gold;
}

.swiper-slide img {
  height: 200px; /* Adjusted size for consistency */
  width: 200px;
  border-radius: 50%;
  border: 3px solid #c0c0c0; /* Border to match the previous card */
  /* box-shadow: 0 0 15px rgba(192, 192, 192, 0.8);  */
  margin-bottom: 20px; /* Adjusted margin */
}

.swiper-slide:hover {
  transform: scale(1.05);
}

.swiper-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  z-index: 10;
}

.swiper-button:hover {
  background-color: #0056b3;
}

.swiper-button.left {
  left: 10px;
}

.swiper-button.right {
  right: 10px;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.swiper-pagination-circle {
  width: 12px;
  height: 12px;
  margin: 5px;
  background-color: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.swiper-pagination-circle.active {
  background-color: #007bff;
}

.contact-us {
  padding: 80px 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
}

.contact-us .container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  height: auto;
}

.contact-details {
  flex: 1;
  padding: 20px;
  min-width: 300px;
  height: auto;
}
.map {
  width: 70%;
  aspect-ratio: 1/0.5;
}
.contact-details h2 {
  color: #e63946;
  margin-bottom: 20px;
}

.contact-details h1 {
  margin-bottom: 36px;
}

.contact-details p {
  margin-bottom: 15px;
}

.contact-form {
  flex: 1;
  padding: 20px;
  min-width: 300px;
}

.contact-form h2 {
  color: black;
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.contact-form button {
  display: inline-block;
  background-color: #e63946;
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #d62828;
}

/*gallery grid style*/

.gallery {
  width: 100%;
  padding: 36px;
  background-color: #262626;
  border-top: 4px solid silver;
  border-bottom: 4px solid silver;
}

.gallery h1 {
  padding-top: 80px;
  font-size: var(--font-size3);
  padding-bottom: 10px;
  color: goldenrod;
  text-align: center;
  position: relative; /* Required for positioning the pseudo-element */
}

.gallery h1::after,
.cafee-menu h1::after {
  content: "";
  display: block;
  background-color: goldenrod; /* Color of the line */
  height: 5px; /* Height of the line */
  border-radius: 3px;
  width: var(--under-line-width); /* Width of the line */
  /* margin: 0 auto; Centers the line below the h1 */
  position: absolute;
  bottom: 0; /* Positions it just below the h1 */
  left: 50%; /* Centers it horizontally */
  transform: translateX(-50%); /* Adjusts the centering of the line */
}

/* Centering Container */
.grid-container {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px;
  width: 100%;
}

/* Product Grid Styles */
.grid-all-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 1200px;
}

.grid-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: fill;
}

.grid-card h3 {
  margin: 15px 0 10px;
  font-size: 1.2em;
  color: #333;
}

.grid-card p {
  margin: 10px 0;
  color: #666;
}

.grid-card button {
  background-color: #ff5722;
  color: #fff;
  border: none;
  padding: 10px 15px;
  margin: 15px 0;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s;
}

.grid-card button:hover {
  background-color: #e64a19;
}

.grid-card:hover {
  box-shadow: 0 0 3px 3px rgb(164, 125, 26);
  z-index: 10;
  /* transform: scale(1.1); */
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

#site-footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-about,
.footer-contact,
.footer-social {
  width: 30%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer-social ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.footer-icon {
  height: 30px;
  aspect-ratio: 1;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}
.footer-ref {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.footer-about h3,
.footer-contact h3,
.footer-social h3 {
  color: #ff6347; /* Tomato color to add a pop */
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-about p,
.footer-contact ul,
.footer-social ul {
  font-size: 16px;
  line-height: 1.6;
}

.footer-contact ul,
.footer-social ul {
  list-style: none;
  padding: 0;
}

.footer-contact li,
.footer-social li {
  margin-bottom: 10px;
}

.footer-contact li strong,
.footer-social a {
  color: #ffd700; /* Golden color for highlights */
  font-weight: bold;
}

.footer-social a {
  text-decoration: none;
}

.footer-social a:hover {
  color: #ff6347; /* Hover effect with tomato color */
}

.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid #444;
  padding-top: 10px;
}

.footer-bottom p {
  font-size: 14px;
  color: #aaa;
}

/* Media query for devices with max-width 900px */
@media (max-width: 1024px) {
  html {
    font-size: 18px;
  }

  .logo {
    padding: 7px;
  }

  .navbar {
    padding: 7px;
  }

  /* Show burger button for mobile screens */
  #burgerBtn {
    display: block;
  }

  /* Show close button for mobile screens */
  #menu-close-button {
    display: block;
  }

  /* Mobile navmenu styles */
  .navmenu {
    position: absolute;
    top: 0;
    left: -500px; /* Initially off-screen */
    transition: 0.4s ease;
    background-color: whitesmoke;
    min-width: 40%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    color: black;
    font-size: var(--font-size2);
  }

  /* Active state of the menu, moves it into view */
  .navmenu.active {
    left: 0;
  }

  /* Style for nav links in mobile menu */
  .navmenu a {
    text-decoration: none;
    color: black;
    font-size: var(--font-size3);
    font-weight: bold;
  }

  .hero-content {
    width: 50%;
  }

  .hero-content {
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
  }

  .about {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    color: whitesmoke;
  }
  .about::before {
    display: none;
  }

  .about-content {
    width: 100%;
    margin: 80px 0;
  }

  .about-content p {
    color: whitesmoke;
    padding: 16px;
    font-size: var(--font-size2);
  }

  .about .h2 {
    margin-top: 10px;
    font-size: var(--font-size3);
    color: goldenrod;
  }

  .about-image-wrapper img {
    width: 300px;
  }

  /* style for swipper section */
  .swiper-main {
    height: 80%;
    padding: 11px 9px 9px 9px;
    width: 100%;
  }

  .swiper-container {
    width: 100%;
  }

  .swiper-wrapper {
    gap: 4px;
  }

  .swiper-slide {
    width: calc((100% / 3));
  }

  .swiper-button.left {
    display: none;
  }
  .swiper-button.right {
    display: none;
  }

  .swiper-slide img {
    height: 150px; /* Adjusted size for consistency */
    width: 150px;
    border-radius: 50%;
    border: 3px solid #c0c0c0; /* Border to match the previous card */
    /* box-shadow: 0 0 15px rgba(192, 192, 192, 0.8);  */
    margin-bottom: 20px; /* Adjusted margin */
  }

  .swiper-slide p {
    font-size: 16px;
  }

  :root {
    --under-line-width: 175px;
  }
}

/* Media query for small screens (max-width 300px) */
@media (max-width: 450px) {
  html {
    font-size: 18px;
  }

  .navmenu {
    justify-content: flex-start;
    color: black;
    font-size: var(--font-size2);
    gap: 100px;
    padding-top: 100px;
    min-width: 50%;
  }

  .navmenu a {
    font-size: var(--font-size2);
  }
  .hero-content {
    width: 100%;
    font-weight: bold;
    height: auto;
    padding-top: 77px;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
  }

  .hero-section {
    flex-direction: column;
  }

  .about {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    padding: 2px;
    color: whitesmoke;
  }
  .about::before {
    display: none;
  }

  .about h2 {
    padding-bottom: 16px;
    color: goldenrod;
  }

  .hero-content {
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    color: whitesmoke;
  }

  .about-content p {
    padding: 6px;
    color: whitesmoke;
  }

  .about .h2 {
    margin-top: 10px;
    color: goldenrod;
  }

  .about-image-wrapper img {
    width: 250px;
  }

  .cafee-menu h1 {
    color: goldenrod;
    font-size: var(--font-size3);
  }
  /* style for swipper section */
  .swiper-main {
    height: 80%;
    padding: 7px 4px 4px 4px;
    width: 100%;
  }

  .swiper-container {
    width: 100%;
  }

  .swiper-wrapper {
    gap: 4px;
  }

  .swiper-slide {
    width: calc((100% / 2.25));
    padding: 4px;
  }

  .swiper-button.left {
    display: none;
  }
  .swiper-button.right {
    display: none;
  }

  .swiper-slide img {
    height: 100px; /* Adjusted size for consistency */
    width: 100px;
    border-radius: 50%;
    border: 3px solid #c0c0c0; /* Border to match the previous card */
    /* box-shadow: 0 0 15px rgba(192, 192, 192, 0.8);  */
    margin-bottom: 20px; /* Adjusted margin */
  }

  .swiper-slide p {
    font-size: 16px;
  }

  .grid-all-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 1200px;
  }

  .footer-container {
    flex-direction: column;
  }
  .footer-about,
  .footer-contact,
  .footer-social {
    flex: 1;
    width: 100%;
    text-align: left;
  }
  .footer-social ul {
    display: flex;
    gap: 16px;
  }
  :root {
    --under-line-width: 180px;
  }
}
