*{
  padding:0px;
  margin:0px;
  box-sizing: border-box;
  font-family:Arial, Helvetica, sans-serif;
}
.social {
  width: 100%;
  height: 8vh;
  background-color: rgb(114, 9, 9);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.socialrap {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-container {
  display: flex;
  align-items: center;
}

.name1 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  white-space: nowrap;
}




/* General Navbar Styling */
.navi {
  position: sticky;
  top: 0;
  z-index: 1020; /* Ensure it stays on top of other elements */
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow for better visibility */
}

/* Logo Styling */
.navbar-brand {
  margin-right: auto; /* Push the logo to the extreme left */
}
.navbar-brand img {
  width: 200px; /* Increased logo size */
}

/* Navbar Links Styling */
.navbar-nav {
  display: flex;
  justify-content: flex-end; /* Align nav links to the right */
  align-items: center;
  gap: 25px; /* Adjusted space between the nav links */
}

.navbar .navbar-nav .nav-link {
  color: rgb(91, 52, 1);
  font-size: 20px; /* Increased font size for nav links */
  font-weight:500; /* Made the links bolder for better emphasis */
  padding: 0.8em 1em; /* Increased padding for better spacing */
  transition: transform 0.3s ease-in-out; /* Smooth transition for the scaling effect */
}

/* Hover Effect for Nav Items */
.nav-item {
  font-size: 20px; /* Matches the increased nav link font size */
  transition: transform 0.3s ease-in-out; /* Smooth transition for scaling */
}
.nav-item:hover {
  transform: scale(1.1);
}

/* Remove Underline for 'Coffee' Link */
.nav-link.name {
  position: relative;
}
.nav-link.name::after {
  content: none; /* Removes the underline effect for 'Coffee' */
}

/* Underline Effect for Other Nav Links */
.nav-link:not(.name)::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px; /* Thickness of the underline */
  left: 0;
  bottom: 0; /* Position of the underline directly below the text */
  background-color: black;
  transition: width 0.3s ease-in-out; /* Animation duration and easing */
}

/* Align the Caret-Down Icon */
.nav-link .fa-caret-down {
  margin-left: 5px; /* Adds a small gap between the text and the icon */
  font-size: 14px; /* Adjusted the size of the caret-down icon */
  vertical-align: middle; /* Align it vertically with the text */
  color: inherit; /* Matches the text color of the link */
}

/* Disable Rotate Caret-Down Icon on Hover */
.nav-link.name:hover .fa-caret-down {
  transform: none; /* Keeps the triangle static on hover */
}

/* Media Query for Larger Screens */
@media screen and (min-width: 768px) {
  .navbar-brand img {
      width: 210px; /* Increased logo size for larger screens */
  }
  .navbar-brand {
      margin-right: 0;
      padding: 0 1em;
  }

  .navbar .navbar-nav .nav-link {
      font-size: 17px; /* Slightly larger font size for larger screens */
  }

  .nav-item {
      font-size: 17px; /* Match larger nav link font size */
  }
}







/* Video styling */
#firstvideo {
  position: relative;
  width: 100%;
  height: 60vh;
  object-fit: cover;
  z-index: 0; /* Keep the video below other content */
}

/* Container for video */
.indvid {
  position: relative; /* To position the overlay properly */
  width: 100%;
  height: 60vh;
  background: transparent;
}

/* Black overlay on top of the video */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60vh;
  background-color: rgba(0, 0, 0, 0.5); /* Black with 50% transparency */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1; /* Ensure overlay stays above the video */
}

/* Centered text styling */
.overlay h1 {
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  margin-top: 15%;
}






/* New Arrival Section Styling */
.new-arrival {
  text-align: center;
  padding: 20px;
 
}


.product-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Product Card Styling */
.product {
  text-align: center;
  width: 280px;
  background: #f8f8f8;
  padding: 15px;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.product-image {
  position: relative;
  margin-bottom: 10px;
}

.product-image img {
  width: 100%;
  
}


.product h3 {
  font-size: 18px;
  margin: 10px 0;
  color: #333;
}

.product p {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
}

/* Select Button Styling */
.select-btn {
  background: #621d1d;
  color: white;
  font-size: 14px;
  padding: 10px 20px;
  border: none;
  
  cursor: pointer;
  transition: background 0.3s ease;
}

.select-btn:hover {
  background: #8b2a2a;
}









footer {
  margin-top: 50px;
  background-color: #fff;
  color: #333;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px; /* Added equal gap between sections */
  margin-bottom: 20px;
}

.footer-logo {
  text-align: center; /* Center the logo and contact section */
  margin-bottom: 20px;
}

.footer-logo img {
  width: 200px; /* Increased logo size */
}

.footer-logo hr {
  border: 0;
  border-top: 2px solid #333;
  margin: 10px 0;
}

.contact-section {
  text-align: center; /* Align contact section under the logo */
}

.contact-section h1 {
  font-size: 20px;
}

.contact-section p {
  font-size: 13px;
  margin: 5px 0;
}

.footer-section {
 
  margin: 10px;
  text-align: left; /* Align text properly */
}

.footer-section h4 {
  font-size: 25px; /* Standardized size for all h4 */
  margin-bottom: 10px; /* Consistent spacing under headers */
  color: #000;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  
}

.footer-section ul li {
  margin-bottom: 8px; /* Consistent spacing between list items */
}

.footer-section ul li a {
  font-size: 15px;
  color: #555;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: #a52a2a;
}

/* Social Media Icons with Nested Boxes */
.social-icons {
  display: flex;
  gap: 12px; /* Adjusted spacing between icons */
  justify-content: center; /* Center the icons */
  margin-top: 10px;
}

.icon-box {
  background-color: #a52a2a; /* Brown outer box */
  padding: 8px; /* Add spacing for the white box */
  display: flex;
  justify-content: center;
  align-items: center;
  
  transition: transform 0.3s ease;
}

.inner-box {
  background-color: #fff; /* White inner box */
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
 
}

.icon-box:hover {
  transform: scale(1.1);
}

.icon-box a {
  color: #a52a2a; /* Icon color matching the theme */
  font-size: 16px;
  text-decoration: none;
}

/* Footer Bottom Section */
.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: #fff;
  background-color: rgb(114, 9, 9);
  padding: 10px 0;
  margin: 0; /* Remove gap after footer */
}

.footer-bottom p {
  margin: 5px 0;
}
