


@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; */
  /* --minjon-orange: #B30000; */
  --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;
  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: 30px;
  /* Adjust padding for desired height */
  padding-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  /* Makes the navbar background transparent */
  box-shadow: none;
  /* Removes any default Bootstrap shadow */
  position: absolute;
  /* Crucial: Positions it over content */
  width: 100%;
  /* Ensures it spans full width */
  z-index: 1000;
  /* Ensures it's above other page content */
}

.navbar-brand img {
  height: 60px;
  width: auto;
}

.navbar-nav .nav-link {
  color: var(--minjon-dark-text);
   font-family: "Fira Sans", sans-serif;
  /* Make text light for background image */
  font-weight: 600;
  /* Bolder font weight */
  margin: 0 15px;
  /* Adjust spacing between nav items */
  text-transform: uppercase;
  /* All caps, as in the image */
  padding: 10px 15px;
  /* Add padding for better click area */
  border-radius: 5px;
  /* Slightly rounded corners for active state */
  transition: all 0.3s ease;
  /* Smooth transition for hover/active */
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--minjon-orange);
}

.navbar-nav .nav-link.active::after {
  content: none;
}

.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);
}

@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 */



/* 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;
  }
}



/* contact form css start here */
/* Contact Page Specific Styles (within your styles.css) */

/* ... (other existing CSS for contact page) ... */
.map-section {
  width: 100%;
}

.map-container-full-height {
  height: 400px;
  /* Set a fixed height for the map container on larger screens */
  overflow: hidden;
  /* Ensure map corners are contained if rounded */
}

.map-container-full-height iframe {
  display: block;
  /* Removes any extra space below the iframe */
}

/* Responsive adjustment for map height */
@media (max-width: 991.98px) {
  .map-container-full-height {
    height: 400px;
    /* Adjust map height for tablets */
  }
}

@media (max-width: 767.98px) {
  .map-container-full-height {
    height: 300px;
    /* Adjust map height for mobiles */
  }
}