body {
  background-color: #f6dab0; /* Light Cream */
  font-family: "Courgette", serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  margin: 0;
}

.copyright {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.active {
  color: rgb(235, 204, 168);
}

nav {
  background-color: #6f4e37;
  color: white;
  display: flex; /* Makes logo and nav-links align in a row */
  justify-content: space-between; /* Spreads items apart */
  align-items: center; /* Aligns items vertically */
  padding: 0 10px;
  position: relative;
  width: 100vw; /* Make nav full viewport width */
  left: 0; /* Align nav to the left */
  box-sizing: border-box;
}

nav a,
ul li a {
  text-decoration: none;
  transition: 0.4s ease;
  color: #fff; /* Default text color */
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
  opacity: 1;
}

nav ul li a:hover,
nav a:hover {
  color: rgb(235, 204, 168);
  transform: scale(1.14);
}

.nav-links {
  display: flex;
  gap: 50px;
  padding-right: 70px;
}
.nav-links li {
  list-style-type: none;
  padding: 0 10px;
}
li a {
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 25px;
}

.logo p {
  font-size: 28px;
  font-weight: bold;
  color: #e8c399;
}

.logo img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-left: 20px;
}

.hero .btn {
  margin-top: 20px;
}

.btn {
  background: #6f4e37;
  color: #f5efe6;
  text-decoration: none;
  padding: 10px;
  font-size: 22px;
  border-radius: 10px;
  width: 120px;
  text-align: center;
  transition: 0.3s ease;
  text-wrap: nowrap;
}
.btn:hover {
  background: #9e775c;
}

.hero {
  margin: 0;
  padding: 0; /* Ensure no padding */
  width: 100%; /* Full width */
  position: relative;
  text-align: center;
  color: #fff;
  background-image: url(img/Depositphotos_12052034_m-2015.jpg);
  background-size: 100% 100%;
  background-position: 0 -70px; /* Centers the image */
  background-repeat: no-repeat;
  background-clip: content-box;
  height: 720px;
  z-index: 1;
}

.text {
  position: absolute;
  top: 45%;
  left: 30%;
  transform: translate(-50%, -50%);
  padding: 20px;
  color: white;
  width: 50%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Ensure enough space between text and button */
  height: auto;
}

.hero h1 {
  font-size: 43px;
  font-weight: bold;
}

.hero p {
  font-size: 24px;
}

footer {
  text-align: center; /* Centers the footer content */
  padding: 20px 0;
  background-color: #e8c399;
  color: rgb(163, 104, 67);
  font-size: 18px;
}

.about {
  display: flex;
  justify-content: space-between;
  margin: 24px;
}
.about img {
  width: 700px;
  height: 500px;
  margin: 45px 30px 20px 30px;
  box-shadow: 5px 8px 14px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.about h2 {
  font-size: 50px;
  margin-bottom: 25px;
}
.about p {
  font-size: 25px;
}

.Right {
  display: flex;
  flex-direction: column;
}

.Right .btn {
  margin-top: 20px;
}

.items {
  display: flex;
  text-align: center;
  justify-content: space-between;
  margin: 70px 90px 150px 90px;
}
.item {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}
.item:hover {
  transform: scale(1.08); /* Moves the item 15px upward */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Increases shadow effect */
  cursor: pointer;
}

.items img {
  height: 300px;
  width: 350px;
  object-fit: fill;
  margin: 0 0 20px 0;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.top-3 h1 {
  text-align: center;
  margin: 20px auto 0 auto; /* Centers the heading and adds top/bottom margin */
  background-color: #ffffff;
  padding: 20px;
  max-width: 100%; /* Ensure full width */
  width: calc(100% - 40px);
}

.top-3 {
  margin: 120px 0;
}

.pricing,
.name {
  font-size: 30px;
  padding: 5px;
}
.pricing {
  padding-bottom: 20px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 450;
}

.items a {
  text-decoration: none;
  color: #6f4e37;
}

.links {
  display: flex;
  align-items: flex-start; /* Aligns items to the top */
  gap: 650px; /* Reduces the spacing between sections */
  padding: 20px; /* Adds padding around the section */
}

.socials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 220px;
}

.socials a,
.quick a {
  font-size: 30px; /* Adjust icon size */
  color: #6f4e37; /* Change color to match theme */
  margin: 5px 0; /* Adds spacing between icons */
  text-decoration: none;
  transition: 0.3s ease;
}

.socials a:hover,
.quick a:hover {
  color: #bb8d6c;
}

.socials h2,
.quick h2 {
  margin-bottom: 10px; /* Adds space below heading */
}

.quick {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mission {
  background-color: #f5efe6; /* Light Cream */
  padding: 50px 20px;
  text-align: center;
  margin-bottom: 80px;
  margin-top: 40px;
}

.mission h2 {
  color: #6f4e37; /* Coffee Brown */
  font-family: "Playfair Display", serif;
  font-size: 35px;
}

.mission p {
  font-size: 20px;
  color: #333333;
  max-width: 600px;
  margin: 0 auto;
}

.values {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.value-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  width: 250px;
  transition: 0.3s ease-in-out;
}

.value-item:hover {
  transform: scale(1.24);
  margin: 0 30px;
}

.value-item h3 {
  color: #6f4e37; /* Coffee Brown */
  font-size: 30px;
}

.value-item p {
  font-size: 20px;
  color: #555;
}

.our-story {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f5efe6; /* Light Cream */
}

.our-story h2 {
  font-size: 50px;
  font-family: "Playfair Display", serif;
  color: #6f4e37; /* Coffee Brown */
  margin: 60px 0 40px 0;
  background-color: white;
  width: calc(100% - 30px);
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

.our-story .p {
  font-size: 24px;
  text-wrap: wrap;
  width: 800px;
  background: white;
  padding: 30px;
  margin: 0 0 70px 0;
  border-radius: 15px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.our-story p {
  text-align: left;
}

.images {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.images img {
  width: 480px;
  height: 480px;
  object-fit: cover;
  margin: 30px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.images-section h1 {
  font-size: 50px;
  text-align: center;
  color: #6f4e37; /* Coffee Brown */
  background-color: white;
  width: 100%;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
  font-family: "Playfair Display", serif;
  padding: 15px;
  width: calc(100% - 30px);
}

.menu {
  background: #f7f7f797;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  max-width: 1000px;
  margin: 50px auto 150px auto;
  border-radius: 15px;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
}

.menuSections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  font-family: "Courier New", Courier, monospace;
  padding: 40px;
}

.menuItem {
  display: flex;
  justify-content: space-between;
  text-align: left;
  align-items: center;
  margin: 20px;
  color: #5e5e5e;
}

.menuItem .ite-n {
  font-size: 20px;
  margin: 10px 5px;
}

.hot h1,
.cold h1,
.tea h1,
.pastries h1 {
  font-size: 33px;
  font-family: serif;
  margin: 20px 20px 30px 20px;
  font-weight: bold;
}

.hot,
.cold,
.tea,
.pastries {
  margin: 0 30px;
}

.contact-container {
  margin: 40px 100px;
  color: #6f4e37;
  background-color: #ffe9c9;
  padding: 50px;
  border-radius: 15px;
}

.map {
  width: 400px;
  height: 600px;
  margin-bottom: -200px;
}

.hours {
  margin: 90px 0;
}

.hours h2 {
  font-size: 40px;
}

.hours p {
  font-size: 30px;
}

form {
  display: flex;
  flex-direction: column;
  width: 500px;
}

form input {
  margin: 10px 0;
  padding: 10px 20px;
  font-size: 25px;
  border-radius: 5px;
  outline: none;
  border: none;
  width: 1000px;
}

form textarea {
  margin: 10px 0 40px 0;
  padding: 10px 20px;
  font-size: 25px;
  border-radius: 5px;
  outline: none;
  border: none;
  width: 1000px;
}

form button {
  font-size: 25px;
  background-color: #6f4e37;
  color: #fff;
  border-radius: 5px;
  padding: 20px;
  width: 250px;
  text-wrap: nowrap;
  outline: none;
  border: none;
  transition: 0.3s ease-in-out;
}

form button:hover {
  background-color: #946849;
  cursor: pointer;
}

.social-media a {
  font-size: 50px;
  margin: 0 6px;
  color: #6f4e37;
  transition: 0.3s ease-in-out;
}

.social-media a:hover {
  color: #b88662;
}

/* Responsive Styles */
/* Responsive Hero Section */
@media (max-width: 1200px) {
  .hero {
    height: 500px;
    background-size: cover;
    background-position: center;
  }
  .btn {
    margin: auto;
  }
  .text {
    left: 50%;
    width: 70%;
    text-align: center;
    transform: translate(-50%, -50%);
  }
  .about {
    flex-direction: column;
    align-items: center;
  }
  .about img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 20px 0;
  }
  .items {
    flex-direction: column;
    align-items: center;
    margin: 50px 20px;
  }
  .item {
    width: 100%;
    max-width: 350px;
    margin-bottom: 30px;
  }
  .items img {
    width: 100%;
    height: auto;
  }
  .links {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-left: 0;
  }
  .socials {
    margin-left: 0;
    align-items: center;
  }
  .quick {
    align-items: center;
  }
}

/* Hamburger menu styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-right: 30px;
  position: relative;
  z-index: 2001;
  width: 40px;
  height: 32px;
  justify-content: center;
}

.hamburger span {
  height: 4px;
  width: 32px;
  background: #fff;
  margin: 3px 0;
  border-radius: 2px;
  transition: 0.4s;
  display: block;
  position: relative;
}

/* Animate to X when open */
.hamburger.open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
  border-radius: 10px;
}

@media (max-width: 900px) {
  .hamburger.open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  .nav-links {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    width: 250px;
    background: #6f4e37;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 20px 0 20px;
    transition: right 0.4s ease-in-out;
    z-index: 2000;
  }
  .btn {
    margin: auto;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links li {
    margin: 15px 0;
    width: 100%;
  }
  .nav-links li a {
    font-size: 24px;
    padding: 10px 0;
  }
  .hamburger {
    display: flex;
    z-index: 2001;
  }
  .logo {
    margin-left: 15px;
  }
  .about img {
    max-width: 500px;
  }
  .top-3 h1 {
    font-size: 28px;
    padding: 15px;
  }
}
@media (max-width: 768px) {
  .hamburger.open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  .hero {
    height: 400px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 18px;
  }
  .btn {
    font-size: 18px;
    width: 100px;
    padding: 8px;
    margin: auto;
  }
  .about h2 {
    font-size: 36px;
  }
  .about p {
    font-size: 20px;
  }
  .items img {
    height: 250px;
  }
  .pricing,
  .name {
    font-size: 24px;
  }
  .footer {
    font-size: 16px;
  }
  .socials a,
  .quick a {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .hamburger.open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  .hero {
    height: 300px;
    background-position: center;
  }
  .text {
    width: 90%;
    top: 50%;
    padding: 10px;
  }
  .hero h1 {
    font-size: 24px;
  }
  .hero p {
    font-size: 14px;
  }
  .btn {
    font-size: 14px;
    width: 80px;
    padding: 6px;
    margin: auto;
  }
  .logo img {
    width: 50px;
    height: 50px;
  }
  .logo p {
    font-size: 22px;
  }
  .about h2 {
    font-size: 28px;
  }
  .about p {
    font-size: 16px;
  }
  .about img {
    max-width: 100%;
    margin: 20px 10px;
  }
  .top-3 {
    margin: 60px 0;
  }
  .top-3 h1 {
    font-size: 24px;
  }
  .items {
    margin: 30px 10px;
  }
  .items img {
    height: 200px;
  }
  .pricing,
  .name {
    font-size: 20px;
  }
  .socials h2,
  .quick h2 {
    font-size: 20px;
  }
  .socials a,
  .quick a {
    font-size: 20px;
  }
  .copyright {
    font-size: 14px;
    padding: 10px;
  }
}
@media (max-width: 400px) {
  .hero {
    height: 250px;
  }
  .hero h1 {
    font-size: 20px;
  }
  .hero p {
    font-size: 12px;
  }
  .btn {
    font-size: 12px;
    width: 70px;
    padding: 5px;
  }
  .logo img {
    width: 40px;
    height: 40px;
  }
  .logo p {
    font-size: 18px;
  }
  .nav-links {
    width: 200px;
  }
  .nav-links li a {
    font-size: 20px;
  }
  .hamburger {
    width: 30px;
    height: 24px;
  }
  .hamburger span {
    width: 24px;
    height: 3.5px;
    margin: 2px 0;
  }
  .hamburger.open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }
}
/* Responsive About Section */
@media (max-width: 1200px) {
  .our-story {
    padding: 20px;
  }
  .our-story h2 {
    font-size: 40px;
    width: 100%;
  }
  .our-story .p {
    width: 90%;
    max-width: 600px;
    font-size: 20px;
    padding: 20px;
  }
  .images {
    flex-direction: column;
    align-items: center;
  }
  .images img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 15px 0;
  }
  .mission {
    padding: 30px 15px;
  }
  .values {
    flex-direction: column;
    align-items: center;
  }
  .value-item {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
  }
  .links {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-left: 0;
  }
  .socials {
    margin-left: 0;
    align-items: center;
  }
  .quick {
    align-items: center;
  }
}
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    width: 250px;
    background: #6f4e37;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 20px 0 20px;
    transition: right 0.4s ease-in-out;
    z-index: 2000;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links li {
    margin: 15px 0;
    width: 100%;
  }
  .nav-links li a {
    font-size: 24px;
    padding: 10px 0;
  }
  .hamburger {
    display: flex;
    z-index: 2001;
  }
  .logo {
    margin-left: 15px;
  }
  .our-story h2 {
    font-size: 32px;
  }
  .our-story .p {
    font-size: 18px;
  }
  .images img {
    max-width: 350px;
  }
  .mission h2 {
    font-size: 28px;
  }
  .mission p {
    font-size: 18px;
  }
  .value-item h3 {
    font-size: 24px;
  }
  .value-item p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .our-story h2 {
    font-size: 28px;
  }
  .our-story .p {
    font-size: 16px;
    padding: 15px;
  }
  .images img {
    max-width: 300px;
    height: auto;
  }
  .mission h2 {
    font-size: 24px;
  }
  .mission p {
    font-size: 16px;
  }
  .value-item {
    padding: 15px;
  }
  .value-item h3 {
    font-size: 20px;
  }
  .value-item p {
    font-size: 14px;
  }
  .socials a,
  .quick a {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  .our-story h2 {
    font-size: 24px;
    padding: 10px;
  }
  .our-story .p {
    font-size: 14px;
    width: 95%;
    padding: 10px;
  }
  .images img {
    max-width: 100%;
    margin: 10px 0;
    width: 400px;
  }
  .images img:nth-child(3) {
    height: 400px;
  }
  .images img:nth-child(2) {
    height: 400px;
  }
  .mission {
    padding: 20px 10px;
  }
  .mission h2 {
    font-size: 20px;
  }
  .mission p {
    font-size: 14px;
  }
  .value-item {
    max-width: 250px;
  }
  .value-item h3 {
    font-size: 18px;
  }
  .value-item p {
    font-size: 12px;
  }
  .socials h2,
  .quick h2 {
    font-size: 18px;
  }
  .socials a,
  .quick a {
    font-size: 18px;
  }
  .copyright {
    font-size: 12px;
    padding: 8px;
  }
}
@media (max-width: 400px) {
  .our-story h2 {
    font-size: 20px;
  }
  .our-story .p {
    font-size: 12px;
    padding: 8px;
  }
  .images img {
    max-width: 100%;
    height: auto;
    width: 300px;
    height: 250px;
  }
  .mission h2 {
    font-size: 18px;
  }
  .mission p {
    font-size: 12px;
  }
  .value-item {
    padding: 10px;
  }
  .value-item h3 {
    font-size: 16px;
  }
  .value-item p {
    font-size: 10px;
  }
  .logo img {
    width: 40px;
    height: 40px;
  }
  .logo p {
    font-size: 18px;
  }
  .nav-links {
    width: 200px;
  }
  .nav-links li a {
    font-size: 20px;
  }
  .hamburger {
    width: 30px;
    height: 24px;
  }
  .hamburger span {
    width: 24px;
    height: 3.5px;
    margin: 2px 0;
    border-radius: 2px;
  }
  .hamburger.open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
    border-radius: 2px;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }
}
/* Responsive Contact Section */
@media (max-width: 1200px) {
  .contact-container {
    margin: 20px;
    padding: 30px;
  }
  .map {
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin-bottom: 0;
  }
  form {
    width: 100%;
    max-width: 600px;
  }
  form input,
  form textarea {
    width: 100%;
    max-width: 600px;
    font-size: 20px;
  }
  .links {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-left: 0;
  }
  .socials {
    margin-left: 0;
    align-items: center;
  }
  .quick {
    align-items: center;
  }
}
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    width: 250px;
    background: #6f4e37;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 20px 0 20px;
    transition: right 0.4s ease-in-out;
    z-index: 2000;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links li {
    margin: 15px 0;
    width: 100%;
  }
  .nav-links li a {
    font-size: 24px;
    padding: 10px 0;
  }
  .hamburger {
    display: flex;
    z-index: 2001;
  }
  .logo {
    margin-left: 15px;
  }
  .contact-container {
    padding: 20px;
  }
  .map {
    max-width: 400px;
    height: 300px;
    margin-bottom: 200px;
  }
  .hours h2 {
    font-size: 32px;
  }
  .hours p {
    font-size: 24px;
  }
  form input,
  form textarea {
    font-size: 18px;
  }
  form button {
    font-size: 20px;
    width: 200px;
  }
}
@media (max-width: 768px) {
  .contact-container {
    margin: 15px;
    padding: 15px;
    flex-direction: column;
    align-items: center;
  }
  .map {
    max-width: 100%;
    height: 250px;
    margin: 0 auto 20px auto; /* Ensure map is above other content */
    margin-bottom: 200px;
  }
  .hours {
    margin: 20px 0;
    text-align: center;
  }
  .hours h2 {
    font-size: 28px;
  }
  .hours p {
    font-size: 20px;
  }
  form input,
  form textarea {
    font-size: 16px;
    padding: 8px 15px;
  }
  form button {
    font-size: 18px;
    width: 180px;
    padding: 15px;
  }
  .social-media a {
    font-size: 40px;
    margin: 0 4px;
  }
  .socials a,
  .quick a {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  .contact-container {
    margin: 10px;
    padding: 10px;
    flex-direction: column;
    align-items: center;
  }
  .map {
    height: 200px;
    margin: 0 auto 15px auto;
    margin-bottom: 250px;
  }
  .hours {
    margin: 15px 0;
  }
  .hours h2 {
    font-size: 24px;
  }
  .hours p {
    font-size: 16px;
  }
  form {
    max-width: 100%;
    width: 400px;
  }
  form input,
  form textarea {
    font-size: 14px;
    padding: 6px 10px;
  }
  form button {
    font-size: 16px;
    width: 150px;
    padding: 10px;
  }
  .social-media a {
    font-size: 30px;
  }
  .socials h2,
  .quick h2 {
    font-size: 18px;
  }
  .socials a,
  .quick a {
    font-size: 18px;
  }
  .copyright {
    font-size: 12px;
    padding: 8px;
  }
}
@media (max-width: 400px) {
  .contact-container {
    margin: 5px;
    padding: 8px;
  }
  .map {
    height: 150px;
  }
  .hours h2 {
    font-size: 20px;
  }
  .hours p {
    font-size: 14px;
  }
  form {
    width: 300px;
  }
  form input,
  form textarea {
    font-size: 12px;
    padding: 5px 8px;
  }
  form button {
    font-size: 14px;
    width: 120px;
    padding: 8px;
  }
  .social-media a {
    font-size: 24px;
  }
  .logo img {
    width: 40px;
    height: 40px;
  }
  .logo p {
    font-size: 18px;
  }
  .nav-links {
    width: 200px;
  }
  .nav-links li a {
    font-size: 20px;
  }
  .hamburger {
    width: 30px;
    height: 24px;
  }
  .hamburger span {
    width: 24px;
    height: 3.5px;
    margin: 2px 0;
  }
  .hamburger.open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
    border-radius: 2px;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }
}
/* Responsive Menu Section */
@media (max-width: 1200px) {
  .menu {
    margin: 20px;
    padding: 20px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .menuSections {
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 100%;
  }
  .hot,
  .cold,
  .tea,
  .pastries {
    margin: 10px 0;
  }
  .hot h1,
  .cold h1,
  .tea h1,
  .pastries h1 {
    font-size: 30px;
    margin: 15px 0;
    text-align: center;
  }
  .menuItem {
    margin: 10px 0;
    font-size: 20px;
    padding: 10px;
  }
  .menuItem .ite-n {
    font-size: 18px;
  }
  .links {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-left: 0;
  }
  .socials {
    margin-left: 0;
    align-items: center;
  }
  .quick {
    align-items: center;
  }
}
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    width: 250px;
    background: #6f4e37;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 20px 0 20px;
    transition: right 0.4s ease-in-out;
    z-index: 2000;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links li {
    margin: 15px 0;
    width: 100%;
  }
  .nav-links li a {
    font-size: 24px;
    padding: 10px 0;
  }
  .hamburger {
    display: flex;
    z-index: 2001;
  }
  .logo {
    margin-left: 15px;
  }
  .menu {
    margin: 15px;
    padding: 15px;
  }
  .hot h1,
  .cold h1,
  .tea h1,
  .pastries h1 {
    font-size: 28px;
  }
  .menuItem {
    font-size: 18px;
  }
  .menuItem .ite-n {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .menu {
    margin: 15px;
    padding: 15px;
  }
  .menuSections {
    padding: 15px;
  }
  .hot,
  .cold,
  .tea,
  .pastries {
    margin: 10px 0;
  }
  .hot h1,
  .cold h1,
  .tea h1,
  .pastries h1 {
    font-size: 26px;
    margin: 10px 0;
  }
  .menuItem {
    margin: 8px 0;
    font-size: 16px;
    padding: 8px;
  }
  .menuItem .ite-n {
    font-size: 14px;
  }
  .socials a,
  .quick a {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  .menu {
    margin: 10px;
    padding: 10px;
  }
  .menuSections {
    padding: 10px;
  }
  .hot h1,
  .cold h1,
  .tea h1,
  .pastries h1 {
    font-size: 22px;
    margin: 8px 0;
  }
  .menuItem {
    margin: 6px 0;
    font-size: 14px;
    padding: 6px;
  }
  .menuItem .ite-n {
    font-size: 12px;
  }
  .socials h2,
  .quick h2 {
    font-size: 18px;
  }
  .socials a,
  .quick a {
    font-size: 18px;
  }
  .copyright {
    font-size: 12px;
    padding: 8px;
  }
}
@media (max-width: 400px) {
  .menu {
    margin: 5px;
    padding: 8px;
  }
  .menuSections {
    padding: 8px;
  }
  .hot h1,
  .cold h1,
  .tea h1,
  .pastries h1 {
    font-size: 20px;
    margin: 6px 0;
  }
  .menuItem {
    margin: 5px 0;
    font-size: 12px;
    padding: 5px;
  }
  .menuItem .ite-n {
    font-size: 10px;
  }
  .socials h2,
  .quick h2 {
    font-size: 16px;
  }
  .socials a,
  .quick a {
    font-size: 16px;
  }
  .logo img {
    width: 40px;
    height: 40px;
  }
  .logo p {
    font-size: 18px;
  }
  .nav-links {
    width: 200px;
  }
  .nav-links li a {
    font-size: 20px;
  }
  .hamburger {
    width: 30px;
    height: 24px;
  }
  .hamburger span {
    width: 24px;
    height: 3.5px;
    margin: 2px 0;
  }
  .hamburger.open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
    border-radius: 2px;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }
}
