/* Resetting default margins and paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Basic body styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

/* Header and Navbar Styles */
header {
  background-color: rgb(145, 97, 8);
  padding: 20px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-logo .logo-text {
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 24px;
  padding-left: 60px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  padding-right: 60px;
}

.nav-item .nav-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-item .nav-link:hover {
  color: rgb(146, 142, 142);
  transform: translateY(-2px);
}

/* Responsive Menu (Hamburger) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
}

/* Mobile View */
@media screen and (max-width: 768px) {
  .navbar {
      flex-direction: column;
      align-items: flex-start;
      padding: 10px;
  }

  .nav-menu {
      display: none;
      width: 100%;
      flex-direction: column;
      gap: 10px;
  }

  .nav-menu.active {
      display: flex;
  }

  .hamburger {
      display: flex;
  }

  .hamburger div {
      width: 25px;
      height: 3px;
      background-color: #fff;
  }

  .nav-logo .logo-text {
      padding-left: 0;
  }
}


/* ----------Home Section -------------*/

.home-section {
  min-height: 100vh;
  background: white;
  padding: 50px 20px;
}

.home-section .section-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: black;
  flex-wrap: wrap;  /* Allows wrapping on smaller screens */
}

.home-section .hero-details {
  flex: 1;  /* Takes up available space */
  max-width: 50%; /* Ensures it doesn't exceed 50% of the width */
}

.home-section .hero-details .title {
  font-size: 2.5rem;
  color: rgb(145, 97, 8);
  font-family: sans-serif;
  margin-bottom: 10px;
}

.home-section .hero-details .subtitle {
  font-size: 1.5rem;
  font-weight: bold;
  color: black;
  margin-top: 8px;
  max-width: 70%;
}

.home-section .hero-details .description {
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 20px;
  max-width: 70%;
}

.buttons {
  margin-top: 20px;
}

.button {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  margin-right: 15px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(19, 17, 17, 0.1);
}

.order-now {
  background-color: rgb(145, 97, 8);
  color: white;
}

.order-now:hover {
  background-color: rgb(237, 162, 23);
  transform: translateY(-2px);
}

.contact-us {
  background-color: rgb(145, 97, 8);
  color: white;
}

.contact-us:hover {
  background-color: rgb(237, 162, 23);
  transform: translateY(-2px);
}

/* Home Image Styling */
.home-image {
  flex: 1;  /* Image also takes up available space */
  max-width: 45%; /* Ensures the image doesn't take up too much space */
  margin-top: 20px; /* Optional: adds space above the image */
}

.Home-img {
  width: 80%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile View Adjustments */
@media screen and (max-width: 768px) {
  .home-section .section-content {
    flex-direction: column;  /* Stack the content vertically */
    text-align: center;  /* Center the text and image */
  }

  .home-image {
    max-width: 80%; /* Image will take up more space on small screens */
    margin-top: 20px; /* Optional: adds space above the image */
  }

  .Home-img {
    width: 80%;
    height: auto;
  }

  .hero-details {
    max-width: 100%; /* Allow text to take full width on smaller screens */
    margin-top: 20px;
  }
}


/* ----------About Section--------- */


.about-section {
  padding: 80px 20px;
  background-color: #f9f9f9; /* Soft background color */
  text-align: center; /* Center the content */
  color: #333;
}

.about-section .section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.about-section .about-image-wrapper {
  width: 100%;
  max-width: 400px;
  height: 300px;
  margin: 0 auto;
  border-radius: 50%; /* Circular image */
  overflow: hidden; /* Make sure image fits inside the circle */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Soft shadow around the image */
}

.about-section .about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.about-section .section-title {
  font-size: 2.5rem;
  color: rgb(145, 97, 8); /* Coffee color */
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-section .text {
  font-size: 1.2rem;
  color: #777;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
}

.about-section .cta-button {
  margin-top: 30px;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  background-color: rgb(145, 97, 8);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-section .cta-button:hover {
  background-color: #e8d14f; /* Lighter coffee color */
  transform: translateY(-3px);
}

@media screen and (max-width: 768px) {
  .about-section {
      padding: 60px 20px;
  }

  .about-section .section-title {
      font-size: 2rem;
  }

  .about-section .text {
      font-size: 1.1rem;
  }

  .about-section .about-image-wrapper {
      max-width: 80%;
      height: 250px;
  }
}

/* ---------MENY SECTION--------- */

.menu-section {
  padding: 80px 20px;
  background-color: #f9f9f9; /* Soft background color */
  text-align: center; /* Center the content */
  color: #333;
}

.menu-header {
  margin-bottom: 40px;
}

.menu-header .section-title {
  font-size: 2.5rem;
  color: rgb(145, 97, 8); /* Coffee color */
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.menu-header .menu-description {
  font-size: 1.2rem;
  color: #777;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Menu Categories */
.menu-category {
  margin-bottom: 40px;
}

.category-title {
  font-size: 2rem;
  color: rgb(145, 97, 8);
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-items {
  list-style: none;
  text-align: left;
  margin: 0 auto;
  max-width: 700px;
}

.menu-item-image {
  width: 200px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 15px;
}

/* Aligning images with text in menu items */
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 15px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: #555;
}

.menu-item .item-name {
  font-weight: 600;
  color: rgb(145, 97, 8);
}

.menu-item .item-price {
  font-weight: 600;
  color: rgb(145, 97, 8);
  padding-right: 10px;
}

.menu-item .item-description {
  color: #777;
  font-size: 0.9rem;
  max-width: 900px;
  padding-left: 30px;
}

/* Responsive Menu */
@media screen and (max-width: 768px) {
  .menu-header .section-title {
      font-size: 2rem;
  }

  .menu-header .menu-description {
      font-size: 1.1rem;
  }

  .menu-item {
      flex-direction: column;
      align-items: flex-start;
  }

  .item-price {
      margin-top: 5px;
  }
}

/* ----------CONTACT PAGE---------- */

/* Contact Page Styles */
.contact-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.contact-section .section-title {
  font-size: 2.5rem;
  color: rgb(145, 97, 8);
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-section .section-description {
  font-size: 1.2rem;
  color: #777;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
  margin-bottom: 40px;
}

/* Contact Info */
.contact-info {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-info .info-item {
  flex: 1;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
}

.contact-info .info-item h3 {
  font-size: 1.5rem;
  color: rgb(145, 97, 8);
  margin-bottom: 10px;
}

.contact-info .info-item p {
  font-size: 1rem;
  color: #777;
}

/* Contact Form */
.contact-form {
  background-color: white;
  padding: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form h3 {
  font-size: 2rem;
  color: rgb(145, 97, 8);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-group label {
  font-size: 1.1rem;
  color: #333;
  display: block;
  margin-bottom: 8px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 10px;
}

.contact-form .form-group textarea {
  resize: vertical;
  height: 150px;
}

.contact-form .submit-btn {
  background-color: rgb(145, 97, 8);
  color: white;
  padding: 15px 30px;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form .submit-btn:hover {
  background-color: rgb(237, 162, 23);
  transform: translateY(-2px);
}

/* Mobile View */
@media screen and (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    gap: 20px;
  }

  .contact-info .info-item {
    max-width: 100%;
    padding: 20px;
  }

  .contact-form {
    padding: 30px;
  }

  .contact-form .form-group input,
  .contact-form .form-group textarea {
    font-size: 1rem;
  }

  .contact-form h3 {
    font-size: 1.8rem;
  }
}
