/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Trebuchet MS', sans-serif;
    background-color: #f9f9f9;
  }
  h3{
    text-align: center;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  
  
  /* === Dropdown Menu === */
  .dropdown {
    position: relative;
  }
  
  .dropdown > a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    display: block;
  }
  
  /* The dropdown menu */
  .dropdown-menu {
    display: none;  /* Hidden by default */
    position: absolute;
    top: 100%;  /* Position the dropdown menu below the Shop link */
    left: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    list-style: none;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  .dropdown-menu li {
    width: 200px; /* Optional: You can adjust the width of the dropdown */
  }
  
  /* Style for the dropdown menu items */
  .dropdown-menu li a {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 400;
    transition: background-color 0.3s ease;
  }
  
  /* Hover effect on dropdown items */
  .dropdown-menu li a:hover {
    background-color: #f0f0f0;
    color: #007BFF;
  }
  
  /* Show the dropdown menu when hovering the parent */
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  /* === Responsive Design === */
  @media (max-width: 768px) {
    .nav-links {
      position: absolute;
      top: 60px;
      right: 0;
      background-color: white;
      flex-direction: column;
      width: 100%;
      align-items: center;
      gap: 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transform: translateX(100%);
      transition: transform 0.3s ease;
    }
  
    .nav-links.active {
      transform: translateX(0);
      transition: transform 0.3s ease-in-out;
    }
  
    .menu-toggle {
      display: flex;
    }
  
    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
  
    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
  
    .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }
  
    /* Adjust the dropdown menu for small screens */
    .dropdown-menu {
      position: static;
      width: 100%;
      box-shadow: none; /* Remove shadow for mobile */
      border: none; /* Remove border on mobile */
    }
  
    .nav-links {
      flex-direction: column; /* Stack the nav items on mobile */
      gap: 15px;
    }
  
    .dropdown-menu li a {
      padding: 12px 20px; /* Increase padding for better mobile tap area */
      text-align: center; /* Center align text for a cleaner look */
    }
  
    /* Make the dropdown appear under the Shop menu item on smaller screens */
    .dropdown {
      width: 100%;
    }
  
    .dropdown-menu li a {
      padding-left: 15px; /* Add padding for better spacing */
      padding-right: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .dropdown-menu li a {
      font-size: 0.9em; /* Slightly smaller font size for very small screens */
      padding: 10px 15px; /* Adjust padding for smaller screens */
    }
  }
  
  /* Video Slider Section */
  #cart-video {
    padding: 20px;
  }
  
  .video-slider {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .video-item {
    text-align: center;
  }
  
  .video-item video {
    width: 80%; /* Set a smaller width */
    max-width: 800px; /* Limit maximum width */
    height: auto; /* Maintain aspect ratio */
    margin: 0 auto; /* Center the video */
  }
  
  .message {
    text-align: center;
    font-size: 1.2em;
    margin: 20px 0;
  }
  
  .cta-button-container {
    text-align: center;
    margin: 20px 0;
  }
  
  .book-us-button {
    padding: 10px 20px;
    background-color: #ff5733;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    transition: background-color 0.3s;
  }
  
  .book-us-button:hover {
    background-color: #e04f2f;
  }
  /* Hover effect for images */
.video-item img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Button hover effects */
.book-us-button:hover {
  background-color: #e04f2f;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Adds shadow on hover */
  transform: translateY(-2px); /* Slight upward movement */
}

  
  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
    /* Navigation */
    nav {
      flex-direction: row;
      align-items: flex-start;
    }
  
    nav .nav-links {
      flex-direction: column;
      position: fixed;
      width: 100%;
      padding-left: 0;
    }
  
    nav .nav-links li {
      margin: 10px 0;
    }
  
    nav .menu-toggle {
      display: block;
      cursor: pointer;
    }
  
    .menu-toggle span {
      background-color: #333;
      display: block;
      height: 4px;
      width: 25px;
      margin: 5px auto;
    }
  
    .video-item h2 {
      font-size: 1.5em;
    }
  
    .message p {
      font-size: 1em;
    }
  
    .book-us-button {
      font-size: 1em;
    }
  }
  
  @media (max-width: 480px) {
    /* Navigation */
    nav {
      padding: 10px;
    }
  
    nav .logo img {
      width: 100px;
    }
  
    nav .nav-links li a {
      font-size: 1rem;
      text-align: center;
    }
  
    /* Video */
    .video-item video {
      max-width: 100%;
    }
  
    /* Button */
    .book-us-button {
      font-size: 1em;
      padding: 8px 18px;
    }
  }
  .slick-prev, .slick-next {
    background-color: transparent;
    color: #ff5733;
    border: none;
    font-size: 2em;  /* Larger icons */
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  
  .slick-prev {
    left: 10px;
  }
  
  .slick-next {
    right: 10px;
  }
  
  .slick-prev:hover, .slick-next:hover {
    color: #e04f2f;  /* Hover color */
  }
  


  /* === Navigation Bar === */
header {
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  width: 100px;
  height: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  align-items: center; /* Align menu items in a row */
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #007BFF;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 4px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  .nav-links {
      position: absolute;
      top: 60px;
      right: 0;
      background-color: white;
      flex-direction: column;
      width: 100%;
      align-items: center;
      gap: 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transform: translateX(100%);
      transition: transform 0.3s ease;
  }

  .nav-links.active {
      transform: translateX(0);
      z-index: 999  ;
  }

  .menu-toggle {
      display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
      opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
  }
}




/* About us CSS*/

/* === General Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === Body & Layout === */
body {
  font-family: 'Trebuchet MS', sans-serif;
  background-color: #fdf8f3;
  color: #555;
}

header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  width: 120px;
  height: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  text-align: center;
}

.nav-links li a:hover {
  color: #8B5E3C;
}

/* === About Section === */
main {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-section {
  text-align: center;
  margin-bottom: 60px;
}

.about-section h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-family: 'Trebuchet MS', sans-serif;
  color: #8B5E3C;
}

.logo-story-container {
  text-align: center;
  margin-bottom: 30px;
}

.logo-story {
  width: 150px;
  height: auto;
  border-radius: 8px;
}

.story-text-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  gap: 20px;
}

.story-text-left {
  flex: 1;
  font-size: 1.2rem;
  line-height: 1.8;
  font-family: 'Trebuchet MS', sans-serif;
  color: #6b4f3d;
}

.story-text-left p {
  margin-bottom: 20px;
}

.story-text-left em {
  font-style: italic;
  font-size: 1.3rem;
  color: #8B5E3C;
}

.story-text-right {
  flex: 1;
  position: relative;
}

.story-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.image-caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 1rem;
  font-style: italic;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px 10px;
  border-radius: 5px;
}

/* === Values and Team Sections === */
.values-section, .team-section {
  margin-top: 60px;
  text-align: center;
}

.values-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: 'Trebuchet MS', sans-serif;
  color: #8B5E3C;
}

.values-section ul {
  list-style: none;
  padding: 0;
}

.values-section ul li {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #6b4f3d;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 1rem;
}
/* Style for the quote text */
.about-section p em {
  background-color: #f2d1b3; /* Light brown background */
  padding: 10px;
  border-radius: 8px; /* Rounded corners */
  font-style: italic; /* Keeping the italic style */
  color: #6b4f3d; /* Dark brown text color */
  display: inline-block; /* Ensures the background only covers the text */
  margin: 20px 0; /* Optional: spacing around the paragraph */
}

/* location css */
/* Location Container */
.location-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

/* Location Details */
.location-details {
  max-width: 900px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  width: 90%;
}

.location-details h4 {
  color: #2c3e50;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.location-details p {
  font-size: 1.1em;
  margin: 10px 0;
  color: #555;
}

/* Social Media Icons */
.social-media {
  margin-top: 20px;
}

.social-media a {
  color: #2c3e50;
  margin: 0 10px;
  font-size: 1.5em;
  text-decoration: none;
}

.social-media a:hover {
  color: #e74c3c;
}

/* Map Container */
.map-container {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  border-radius: 10px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
  .location-container {
    flex-direction: column;
    align-items: center;
  }

  .location-details {
    width: 95%;
  }

  .social-media a {
    font-size: 1.3em;
  }
}

@media screen and (max-width: 480px) {
  .location-details p {
    font-size: 1em;
  }

  .social-media a {
    font-size: 1.2em;
  }
}
/* location finder */

/* Location Finder */
.location-finder {
  text-align: center;
  margin: 30px auto;
}

.location-finder form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 400px;
  margin: 0 auto;
}

.location-finder input {
  padding: 10px;
  font-size: 1.1em;
  margin-bottom: 10px;
  width: 100%;
}

.location-finder button {
  padding: 10px;
  background-color: #2c3e50;
  color: white;
  border: none;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.location-finder button:hover {
  background-color: #e74c3c;
}

.branch-suggestions {
  margin-top: 20px;
}

.branch-suggestions h4 {
  color: #2c3e50;
}

.branch-suggestions p {
  font-size: 1.1em;
  color: #555;
}

.branch-suggestions strong {
  color: #2c3e50;
}
/* Styling for the branch suggestions */
.branch-suggestions {
  margin-top: 20px;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.branch-suggestions p {
  font-size: 1.1rem;
  color: #333;
}

.branch-suggestions h4 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Form Styling */
.location-finder input {
  padding: 10px;
  width: 100%;
  max-width: 400px;
  margin-bottom: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.location-finder button {
  padding: 10px 20px;
  background-color: #ff5733;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.location-finder button:hover {
  background-color: #e04f2f;
}
