
@import url('https://fonts.googleapis.com/css2?family=Sevillana&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sevillana&display=swap');

:root {
  /* --minjon-orange: #ff6600; */
  /* AAZ Logo Color */
  /* --minjon-orange: #B30000; */
  /* By Me Edit  */
  --minjon-orange: #cd0f0f;;
  /* Approximate color from the logo/button */
  /* --minjon-dark-text: #333; */
  --minjon-dark-text: #000000;
  --minjon-light-text: #fff;
  --minjon-gray: #f8f9fa;
}

body {
  font-family: "Playfair Display", serif;
  color: var(--minjon-dark-text);
}

/* Top Bar Styling */
.top-bar {
  background-color: #f2f2f2;
  /* Light grey from the image */
  padding: 5px 0;
  font-size: 0.85em;
  color: #555;
  border-bottom: 1px solid #eee;
}

.top-bar .contact-info a {
  color: #555;
  text-decoration: none;
  margin-right: 15px;
}

.top-bar .social-links .btn {
  background-color: #dcdcdc;
  /* Lighter grey for social buttons */
  color: #555;
  font-size: 0.8em;
  padding: 3px 10px;
  margin-left: 5px;
  border-radius: 0;
  /* Square buttons */
}

.top-bar .social-links .btn:hover {
  background-color: #c0c0c0;
}

/* Navbar Styling */
.navbar {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: var(--minjon-light-text);
  /* White background */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 40px;
  /* Adjust as needed */
}

.navbar-nav .nav-link {
  color: var(--minjon-dark-text);
  font-weight: 500;
  font-family: "Fira Sans", sans-serif;
  margin: 0 10px;
  position: relative;
  padding-bottom: 5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--minjon-orange);
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: var(--minjon-orange);
  border-radius: 2px;
}

.navbar .search-icon,
.navbar .language-btn {
  color: var(--minjon-dark-text);
  text-decoration: none;
  margin-left: 20px;
}

.navbar .language-btn {
  background-color: var(--minjon-orange);
  color: var(--minjon-light-text);
  padding: 8px 15px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
}

.navbar .language-btn:hover {
  background-color: #e65c00;
  /* Darker orange on hover */
  color: var(--minjon-light-text);
}

/* Hero Section Styling */
.hero-section {
  position: relative;
  width: 100%;
  height: 500px;
  /* Adjust height as needed */
  background-image: url('../Images/Homepage1.jpg');
  /* Placeholder Image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Align text to the left */
  color: var(--minjon-light-text);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  /* For readability on image */
  padding-left: 10%;
  /* Adjust text position from left */
}

.hero-content {
  margin-top: -160px;
}

.hero-section .hero-content h1 {
  font-size: 3.8em;
  color: white;
  /* Adjust font size */
  margin-bottom: 10px;
  line-height: 1.2;
  max-width: 600px;
  font-family: 'Sevillana', cursive;
  /* Limit width of text */
}

.hero-section .hero-content p {
  font-size: 1.5em;
  color: #5f4949;
  /* Adjust font size */
  margin-bottom: 20px;
  max-width: 600px;
}

/* Floating/Fixed Icons on Right */
.fixed-icons-right {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Space between icons */
}

.fixed-icons-right .icon-btn {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 1.2em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.fixed-icons-right .icon-btn:hover {
  background-color: var(--minjon-orange);
  color: var(--minjon-light-text);
  border-color: var(--minjon-orange);
}

.fixed-icons-right .chat-bubble {
  background-color: #4CAF50;
  /* Green for chat */
  color: var(--minjon-light-text);
  border-color: #4CAF50;
  font-size: 1.5em;
}

.fixed-icons-right .chat-bubble:hover {
  background-color: #45a049;
  border-color: #45a049;
}

.we-are-here {
  position: fixed;
  right: 20px;
  bottom: 80px;
  /* Above the "Leave a Message" button */
  z-index: 1050;
  width: 80px;
  height: 80px;
  background-color: #ffc107;
  /* Yellow from the image */
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.7em;
  color: #333;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 5px;
  box-sizing: border-box;
  /* Include padding in width/height */
  text-decoration: none;
  /* If it's a link */
}

.we-are-here:hover {
  background-color: #e0a800;
}

.leave-message-btn {
  position: fixed;
  right: 0;
  bottom: 0;
  background-color: var(--minjon-orange);
  color: var(--minjon-light-text);
  padding: 10px 20px;
  border-radius: 5px 0 0 0;
  /* Rounded top-left corner */
  text-decoration: none;
  font-weight: bold;
  z-index: 1050;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 5px;
}

.leave-message-btn:hover {
  background-color: #e65c00;
  color: var(--minjon-light-text);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--minjon-light-text);
    border-top: 1px solid #eee;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar-nav .nav-link.active::after {
    left: 15px;
    /* Adjust for padding on mobile */
    width: calc(100% - 30px);
  }

  .navbar .search-icon,
  .navbar .language-btn {
    margin-left: 0;
    margin-top: 10px;
    display: block;
    /* Stack on mobile */
    text-align: center;
  }

  .hero-section {
    height: 350px;
    padding-left: 5%;
    justify-content: center;
    /* Center text on smaller screens */
    text-align: center;
  }

  .hero-section .hero-content h1,
  .hero-section .hero-content p {
    font-size: 2.8em;
    max-width: 90%;
  }

  .hero-section .hero-content p {
    font-size: 1.1em;
  }

  .fixed-icons-right,
  .we-are-here {
    display: none;
    /* Hide fixed elements on very small screens if they clutter */
  }

  .leave-message-btn {
    padding: 8px 15px;
    font-size: 0.9em;
  }
}

.hero-content {
  margin-top: -140px;
}

/* Hot Seller Section */
.hot-seller-section {
  background-color: var(--minjon-orange);
  /* Orange background */
  padding-top: 60px;
  /* Adjust padding as needed */
  padding-bottom: 60px;
  color: white;
  margin-top: 5px;
  /* Default text color for the section */
}

.hot-seller-heading {
  font-size: 2.8em;
  /* Large, bold heading */
  font-weight: 700;
  margin-bottom: 20px;
}

.hot-seller-text {
  font-size: 1.2em;
  /* Slightly larger text */
  line-height: 1.6;
  max-width: 900px;
  /* Limit text width for readability */
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments for Hot Seller Section */
@media (max-width: 991.98px) {
  .hot-seller-heading {
    font-size: 2.2em;
  }

  .hot-seller-text {
    font-size: 1em;
    padding: 0 15px;
    /* Add some padding on smaller screens */
  }
}

@media (max-width: 767.98px) {
  .hot-seller-heading {
    font-size: 1.8em;
  }
}

/* Product Grid Section */
.product-grid-section {
  background-color: #f8f9fa;
  /* Light background for the section */
}

.product-card {
  box-sizing: border-box;
  /* Ensure padding/border is inside width */
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.product-card:hover {
  transform: translateY(-5px);
  /* Slight lift effect */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  /* More pronounced shadow */
}

.product-card img {
  max-width: 100%;
  height: 100%;
  display: block;
  /* Removes extra space below image */
  margin: 0 auto;
  /* Center image if it's smaller than card width */
  object-fit: contain;
  /* Ensures product image fits without cropping */
  min-height: 120px;
  /* Give product images some minimum height */
}

.product-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Center content vertically */
  align-items: center;
  /* Center content horizontally */
  padding: 15px;
}

.product-card .product-title {
  font-size: 1.05em;
  font-weight: 600;
  color: var(--minjon-dark-text);
  line-height: 1.3;
}

/* Welcome Message Box */
.welcome-message {
  background-color: var(--minjon-light-text);
  padding: 25px;
  text-align: center;
  border-radius: 5px;
  box-sizing: border-box;
  color: #555;
  font-size: 0.95em;
}

.welcome-message .btn-primary {
  background-color: var(--minjon-orange);
  border-color: var(--minjon-orange);
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 5px;
}

.welcome-message .btn-primary:hover {
  background-color: #e65c00;
  border-color: #e65c00;
}

/* Adjustments for responsive behavior */
@media (max-width: 991.98px) {

  /* Adjust for medium and small screens */
  .welcome-message {
    margin-top: 20px;
    /* Add space above it when it wraps */
  }

  .welcome-message .btn-primary {
    display: block !important;
    /* Force button to show on tablets */
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767.98px) {

  /* Adjust for smaller screens like phones */
  .product-card {
    margin-bottom: 20px;
  }

  .welcome-message .btn-primary {
    width: 100%;
    /* Full width on smallest screens */
  }
}

/* Product Categories Section */
.product-categories-section {
  background-color: #f8f9fa;
  /* Consistent light background */
}

.product-categories-heading {
  font-size: 2.2em;
  font-weight: 700;
  color: var(--minjon-dark-text);
  /* Black/dark grey */
  position: relative;
  padding-bottom: 15px;
  /* Space for the underline */
  display: inline-block;
  /* To make underline fit content */
  margin-bottom: 2rem !important;
  /* Adjust margin */
}

.product-categories-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  /* Width of the underline */
  height: 4px;
  /* Thickness of the underline */
  background-color: var(--minjon-orange);
  /* Orange underline */
  border-radius: 2px;
}

.product-categories-intro {
  font-size: 1.1em;
  color: #666;
  max-width: 800px;
  /* Limit text width for readability */
  margin-left: auto;
  margin-right: auto;
}

.category-card {
  box-sizing: border-box;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  min-height: 120px;
  /* Consistent height for category images */
}

.category-card .card-body {
  padding: 15px;
}

.category-card .category-title {
  font-size: 1.05em;
  font-weight: 600;
  color: var(--minjon-dark-text);
  line-height: 1.3;
  margin-bottom: 15px;
  /* Space between title and button */
}

.category-card .category-more-btn {
  background-color: var(--minjon-orange);
  color: var(--minjon-light-text);
  border: 1px solid var(--minjon-orange);
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.category-card .category-more-btn:hover {
  background-color: #e65c00;
  /* Darker orange */
  border-color: #e65c00;
  color: var(--minjon-light-text);
}

/* Responsive adjustments for category section */
@media (max-width: 991.98px) {
  .product-categories-heading {
    font-size: 1.8em;
  }

  .product-categories-intro {
    font-size: 1em;
    padding: 0 15px;
    /* Add some padding on smaller screens */
  }
}

@media (max-width: 767.98px) {
  .product-categories-heading {
    font-size: 1.5em;
  }

  .category-card {
    margin-bottom: 20px;
  }
}

/* About Minjon Section */
.about-minjon-section {
  background-color: var(--minjon-orange);
  /* Orange background from image */
  /* Add the subtle background pattern if you have an image for it */
  /* background-image: url('path/to/your/pattern.png'); */
  background-repeat: no-repeat;
  background-position: center right;
  /* Adjust as needed */
  background-size: cover;
  /* Or specific size if pattern repeats */
  position: relative;
  overflow: hidden;
  /* Hide pattern overflow */
  padding-top: 80px;
  /* Adjust padding */
  padding-bottom: 80px;
}

/* Subtle pattern overlay (optional, if you want to recreate it via CSS) */
.about-minjon-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M100 0L0 100h100V0z" fill="rgba(0,0,0,0.05)" /%3E%3C/svg%3E');
  /* Example subtle diagonal pattern */
  background-repeat: repeat;
  z-index: 1;
  /* Below content */
}

.about-minjon-section .container {
  position: relative;
  /* Ensure container content is above overlay */
  z-index: 2;
}


.about-minjon-content {
  padding: 30px;
  /* Add some internal padding */
}

.about-minjon-heading {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--minjon-light-text);
  /* White text */
}

.about-minjon-subheading {
  font-size: 1.5em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  /* Slightly less white */
}

.about-minjon-content p {
  font-size: 1.05em;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  text-align: justify;
  /* Justify text as in the image */
}

.read-more-btn {
  border: 2px solid var(--minjon-light-text);
  /* White border */
  color: var(--minjon-light-text);
  padding: 10px 30px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background-color: var(--minjon-light-text);
  color: var(--minjon-orange);
  /* Orange text on hover */
}

/* Carousel Styling */
#aboutMinjonCarousel {
  border-radius: 8px;
  /* Slightly rounded corners for the carousel */
  overflow: hidden;
  /* Ensures image corners match container */
}

#aboutMinjonCarousel .carousel-item img {
  border-radius: 8px;
  /* Match container border-radius */
  max-height: auto;
  /* Limit height of carousel images */
  object-fit: cover;
  /* Ensure images cover the area */
}

#aboutMinjonCarousel .carousel-indicators [data-bs-target] {
  background-color: rgba(255, 255, 255, 0.5);
  /* Lighter indicators */
}

#aboutMinjonCarousel .carousel-indicators .active {
  background-color: var(--minjon-orange);
  /* Active indicator is orange */
}

/* Make carousel controls white */
#aboutMinjonCarousel .carousel-control-prev-icon,
#aboutMinjonCarousel .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}


/* Responsive adjustments */
@media (max-width: 991.98px) {
  .about-minjon-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .about-minjon-content {
    padding: 20px 0;
    /* Adjust padding for smaller screens */
    text-align: center;
    /* Center text on smaller screens */
  }

  .about-minjon-content p {
    text-align: center;
    /* Keep text justified for larger paragraphs, but center small screen */
  }

  .read-more-btn {
    display: inline-block;
    /* Ensure button remains block or inline-block */
  }

  .about-minjon-heading,
  .about-minjon-subheading {
    text-align: center;
  }
}

/* Contact Us Section */
.contact-us-section {
  background-color: #f8f9fa;
  /* Light grey background */
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact-us-heading {
  font-size: 2.2em;
  font-weight: 700;
  color: var(--minjon-dark-text);
  /* Black/dark grey */
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
  margin-bottom: 3rem !important;
  /* Adjust margin */
}

.contact-us-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  /* Underline width */
  height: 4px;
  /* Underline thickness */
  background-color: var(--minjon-orange);
  /* Orange underline */
  border-radius: 2px;
}

.contact-image-container img {
  border-radius: 8px;
  /* Slightly rounded corners for the image */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  /* Subtle shadow for depth */
}

.contact-form-container {
  background-color: var(--minjon-light-text);
  border-radius: 8px;
  /* Box shadow already applied in HTML via Bootstrap utility */
}

.contact-form-container .form-label {
  font-weight: 600;
  color: var(--minjon-dark-text);
  margin-bottom: 8px;
  /* Space between label and input */
}

.contact-form-container .form-control {
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 10px 15px;
  font-size: 1em;
}

.contact-form-container .form-control:focus {
  border-color: var(--minjon-orange);
  box-shadow: 0 0 0 0.25rem rgba(255, 102, 0, 0.25);
  /* Orange focus glow */
}

.submit-contact-btn {
  background-color: var(--minjon-orange);
  border-color: var(--minjon-orange);
  color: var(--minjon-light-text);
  padding: 10px 30px;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  width: 100%;
  /* Full width button */
  margin-top: 20px;
  /* Space above button */
}

.submit-contact-btn:hover {
  background-color: #e65c00;
  /* Darker orange on hover */
  border-color: #e65c00;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .contact-us-heading {
    font-size: 1.8em;
  }
}

@media (max-width: 767.98px) {
  .contact-us-heading {
    font-size: 1.5em;
  }

  .contact-form-container {
    padding: 30px;
  }
}

/* footer section all */
/* Footer Section */
.footer-section {
  background-color: #f2f2f2;
  /* Default background */
  color: #555;
  font-size: 0.9em;
}

/* Social Media Bar */
.social-media-bar {
  background-color: #f8f9fa;
  /* Light grey */
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.social-media-bar .social-icons-container {
  /* NEW WRAPPER CLASS */
  display: flex;
  justify-content: center;
  gap: 30px;
  /* Adjust spacing between icon/text pairs */
  flex-wrap: wrap;
  /* Allow items to wrap on smaller screens */
}

.social-media-bar .social-item {
  /* NEW ITEM CLASS */
  display: flex;
  flex-direction: column;
  /* Stack icon and text vertically */
  align-items: center;
  /* Center icon and text horizontally within each item */
  text-decoration: none;
  /* Remove underline from links */
  color: inherit;
  /* Inherit color, then specify for icon/text individually */
}

.social-media-bar .social-icon-link {
  /* This now applies to the <i> tag */
  font-size: 1.8em;
  /* Size of icons */
  color: #888;
  transition: color 0.3s ease;
  margin-bottom: 5px;
  /* Space between icon and text */
}

.social-media-bar .social-icon-link:hover {
  color: var(--minjon-orange);
  /* Orange on hover */
}

.social-media-bar .social-text {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 0;
}

/* Footer Welcome Section */
.footer-welcome-section {
  background-color: var(--minjon-light-text);
  /* White background */
  padding-top: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #eee;
}

.footer-welcome-heading {
  font-size: 2em;
  font-weight: 700;
  color: var(--minjon-orange);
  /* Orange heading */
  margin-bottom: 25px;
}

.footer-welcome-text {
  color: #666;
  line-height: 1.8;
  max-width: 900px;
  /* Limit text width */
  margin-left: auto;
  margin-right: auto;
}

/* Contact Boxes Section */
.footer-contact-boxes {
  background-color: #777;
  /* Darker grey from image */
  padding-top: 0;
  /* No vertical padding here, handled by boxes */
  padding-bottom: 0;
}

.footer-contact-boxes .contact-box {
  padding: 30px 15px;
  /* Adjust padding inside boxes */
  font-size: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  /* Ensure boxes fill height if content differs */
}

.footer-contact-boxes .contact-box i {
  font-size: 2.2em;
  /* Icon size */
  color: var(--minjon-light-text);
  margin-bottom: 10px;
}

.footer-contact-boxes .contact-box .contact-label {
  font-size: 0.9em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-boxes .contact-box .contact-value {
  font-size: 1.1em;
  font-weight: bold;
  color: var(--minjon-light-text);
}

.bg-dark {
  /* Re-using Bootstrap's bg-dark but adjusting it for our specific grey */
  background-color: #5a5a5a !important;
  /* Specific dark grey from image */
}

.bg-orange {
  /* Custom class for the orange box */
  background-color: var(--minjon-orange) !important;
}


/* Bottom Footer / Copyright */
.bottom-footer {
  background-color: #4a4a4a;
  /* Even darker grey for copyright bar */
  color: rgba(255, 255, 255, 0.6);
  padding: 15px 0;
  font-size: 0.8em;
}

/* Responsive adjustments for Footer */
@media (max-width: 767.98px) {

  /* Medium and small screens */
  .social-media-bar .social-icons-container {
    gap: 20px;
    /* Reduce gap on smaller screens */
  }

  .footer-contact-boxes .contact-box {
    margin-bottom: 10px;
    /* Add space between stacked boxes */
  }

  .footer-contact-boxes .col-md-4:last-child .contact-box {
    margin-bottom: 0;
    /* No margin on the last box */
  }

  .footer-welcome-heading {
    font-size: 1.6em;
  }

  .footer-welcome-text {
    font-size: 0.9em;
    padding: 0 15px;
  }
}