/* Import the Lora font */
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

.varela-round-regular {
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Apply Lora font to everything */
* {
  font-family: "Varela Round", sans-serif !important;
  box-sizing: border-box;
}

body {
  background-color: #FFFFFF;
  color: #AD8B5A;
}

/* Header Styles */
.header-container {
  width: 100%;
  padding: 15px 0;
  position: relative;
  z-index: 100;
  margin-bottom: 10px;
  /* Adds space between header and image container */
  background-color: #FFFFFF;
  /* Explicitly set header background */
}

.header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  /* Make this row take full width of its parent */
  /* margin-bottom: 10px; /* Optional: space between this row and search bar */
}

.header-content {
  display: flex;
  /* flex-direction: column; */
  /* Stack .header-top-row and .search-wrapper vertically */
  /* align-items: center; */
  /* Center them if they don't take full width */
  /* flex-wrap: wrap; Removed */
  /* justify-content: space-between; Removed */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.logo {
  height: 150px;
  width: auto;
  flex-shrink: 0;
}

.search-wrapper {
  flex-grow: 1;
  /* This might still be useful for the search wrapper to grow if needed, or can be removed if width:100% is enough */
  display: flex;
  justify-content: center;
  padding: 0 20px;
  /* Adjusted padding for layout */
  /* width: 100%; */
  /* Full width for the row below logo/menu */
  /* order: 3; Removed */
}

.search-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 20px;
}

#searchBar {
  padding: 14px 40px 14px 20px;
  width: 100%;
  border: 2px solid #AD8B5A;
  /* Updated border color */
  border-radius: 30px;
  outline: none;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
  box-sizing: border-box;
}

#searchBar:focus {
  box-shadow: 0 0 10px rgba(185, 153, 96, 0.6);
}

#searchBar::placeholder {
  color: #AD8B5A;
  /* Updated placeholder color */
}

#clearButton {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #AD8B5A;
  /* Updated icon color */
  font-size: 18px;
  cursor: pointer;
  display: none;
}

#clearButton:hover {
  color: #8a6e43;
  /* Updated hover color */
}

#suggestions {
  position: absolute;
  width: 100%;
  background: #fff;
  border: 1px solid #B99960;
  border-radius: 10px;
  overflow: hidden;
  display: none;
  z-index: 10000;
  box-sizing: border-box;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.suggestion-item {
  padding: 12px 20px;
  cursor: pointer;
  color: #333;
  transition: background 0.2s ease;
  z-index: 999999;
}

.suggestion-item:hover {
  color: #B99960;
}

#imageContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  transition: all 0.3s ease;
  background-color: #FFFFFF;
  /* Ensure white background */
}

/* Floating state */
#imageContainer.floating {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  z-index: 99;
  padding: 20px;
  border-radius: 15px;
}

/* Menu Button Styles */
.menu-btn {
  width: 60px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  /* order: 2; Removed */
}

.menu-icon {
  width: 40px;
  height: 40px;
}

.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  background: #AD8B5A;
  box-shadow: -6px 0 32px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.3s;
  z-index: 1000;
  display: flex;
  border-radius: 50px 0 0 50px;
  flex-direction: column;
  padding: 60px 30px 30px 30px;
}

.menu-panel.open {
  transform: translateX(0);
}

.menu-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-panel li {
  margin-bottom: 50px;
  text-align: center;
}

.menu-panel a {
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.2s;
}

.menu-panel a:hover {
  border-radius: 8px;
  padding: 6px 12px;
}

/* Menu Search Bar Styles */
.menu-search-container {
  display: none;
  /* Hidden by default */
  padding: 10px 0;
  /* Add some padding */
  margin-bottom: 15px;
  /* Space before menu items */
  position: relative;
  /* For positioning #menuClearButton if it's shown by default */
}

.menu-search-container input[type="text"] {
  width: 100%;
  padding: 10px 35px 10px 15px;
  /* Adjust padding for clear button */
  border: 1px solid #FFFFFF;
  /* White border for contrast on menu background */
  border-radius: 20px;
  background-color: transparent;
  /* Or a light color */
  color: #FFFFFF;
  /* White text */
  font-size: 14px;
  box-sizing: border-box;
}

.menu-search-container input[type="text"]::placeholder {
  color: #f0f0f0;
  /* Lighter placeholder text */
}

.menu-search-container #menuClearButton {
  position: absolute;
  right: 10px;
  /* Adjust as per input padding */
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  font-size: 16px;
  cursor: pointer;
  /* display: none; /* Initially hidden, shown by JS */
}

/* Basic styling for menu suggestions if different from main */
.suggestions-menu {
  position: static;
  /* Or relative, needs careful consideration within menu panel */
  width: 100%;
  background: #AD8B5A;
  /* Same as menu, or slightly different */
  border: 1px solid #FFFFFF;
  border-top: none;
  /* If attached directly below input */
  border-radius: 0 0 10px 10px;
  /* display: none; /* Controlled by JS */
  z-index: 1001;
  /* Above menu panel content if needed */
  box-sizing: border-box;
}

.suggestions-menu .suggestion-item {
  /* If reusing .suggestion-item, ensure it's styled for menu */
  padding: 10px 15px;
  color: #FFFFFF;
}

.suggestions-menu .suggestion-item:hover {
  background-color: #bfa14a;
  /* Hover color for menu suggestions */
}

/* Title Styles */
#title {
  margin: 0 auto;
  font-size: 70px;
  color: #AD8B5A;
  text-align: left;
  padding: 20px;
  max-width: 600px;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
}

.title-and {
  display: block;
  margin-left: 0;
}


/* Responsive Styles */
@media (max-width: 900px) {
  .header-content {
    flex-wrap: wrap;
  }

  .search-wrapper {
    display: none;
    /* This is the primary change */
    /* order: 3; (can be removed or commented out) */
    /* width: 100%; (can be removed or commented out) */
    /* padding: 20px 0; (can be removed or commented out) */
  }

  .menu-panel.open .menu-search-container {
    display: block;
    /* Show when menu is open on mobile */
    position: relative;
    /* Needed for positioning #menuClearButton */
  }

  #title {
    width: 100%;
    font-size: 50px;
    padding: 20px;
  }

  #imageContainer {
    margin-top: 15px;
    /* Reduced further for mobile */
    gap: 15px;
  }

  .header-container {
    margin-bottom: 5px;
    /* Smaller gap on mobile */
  }


}

@media (max-width: 600px) {
  .menu-panel {
    width: 80vw;
    padding: 40px 16px 16px 16px;
  }


  .logo {
    height: 120px;
  }

  .menu-btn {
    height: 100px;
  }

  #title {
    font-size: 40px;
    padding: 10px 20px;
  }



  .image-hover {
    width: 140px;
    height: 190px;
  }

  #searchBar {
    padding: 12px 38px 12px 16px;
    font-size: 14px;
  }

  #clearButton {
    font-size: 16px;
    right: 12px;
  }

  .suggestion-item {
    padding: 10px 16px;
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  #title {
    font-size: 32px;
  }

  #imageContainer {
    margin-top: 10px;
    gap: 10px;
  }
}

.scroll-down-arrow {
  width: 50px;
  height: 50px;
  margin: 20px auto 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-down-arrow img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}



/* Introduction Section Styles */
.introduction-section {
  display: flex;
  width: 100%;
  min-height: 300px;
  /* Adjust as needed */
  margin-top: 30px;
  /* Space from title/arrow */
  border-radius: 20px;
}

.intro-left-panel {
  flex-basis: 50%;
  background-color: #AD8B5A;
  /* Golden-brown */
  padding: 40px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  /* Include padding in width calculation */
}

.company-name {
  font-weight: bold;
  font-size: 2em;
  /* Adjust as needed */
  color: #FFFFFF;
  margin-bottom: 15px;
}

.company-description {
  font-size: 1em;
  /* Adjust as needed */
  color: #FFFFFF;
  line-height: 1.6;
}

/* Our Project Section Styles */
.our-project-section {
  background-color: #AD8B5A;
  /* Golden-brown */
  width: 100%;
  min-height: 300px;
  /* Visible height */
  padding: 20px 0;
  /* Optional vertical padding */
  margin-top: 30px;
  /* Space from the imageContainer above */
  display: flex;
  /* For future content alignment */
  justify-content: center;
  /* For future content alignment */
  align-items: center;
  /* For future content alignment */
  border-radius: 20px;
}

.project-card.hidden {
  display: none;
}

.show-more-btn {
  display: block;
  margin: 20px auto 0 auto;
  padding: 12px 24px;
  font-size: 1rem;
  background-color: #AD8B5A;
  color: white;
  border: none;
  border-radius: 8px;
  border: white 2px solid;
  cursor: pointer;
  transition: background 0.3s;
}

.show-more-btn:hover {
  background-color: white;
  color: #AD8B5A;
  border: #AD8B5A 2px solid;
}



/* Floating Image Display Area Styles */
.floating-image-area {
  display: none;
  /* <-- Keep only this, no flex here */
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 1000;
  background-color: #ffffff;
  padding: 15px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  max-width: 90vw;
  max-height: 70vh;
  box-sizing: border-box;
  overflow: auto;
  justify-content: center;
  align-items: center;
}

.floating-image-area.show {
  display: flex;
}

.floating-image-area img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 4px;
  object-fit: contain;
  border-radius: 20px;
}


/* Intro Section with Left Text, Right Image that Matches Text Height */
.introduction-section.layout-left-text {
  display: flex;
  align-items: stretch;
  /* Ensure equal height between text and image */
  background-color: #AD8B5A;
  padding: 10px 0 0 30px;
  gap: 30px;
  flex-wrap: wrap;
}

/* Left Side: Text */
.intro-text-block {
  flex: 1;
  color: white;
  font-size: 1.2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-text-block .company-name {
  font-weight: bold;
  font-size: 3em;
  margin-bottom: 20px;
}

.intro-text-block .company-description {
  font-size: 1.5em;
  line-height: 1.8;
}

/* Right Side: Image */
.intro-image-pattern {
  flex: 1;
  background-image: url('../Image/woodflooring-tranparent.png');
  /* Adjust path as needed */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  min-width: 300px;
  border-radius: 0 0 20px 20px;
}

/* Ensure the image container stretches to match text height */
.intro-image-pattern::before {
  content: '';
  display: block;
  padding-top: 100%;
  /* Ensures aspect ratio on small screens */
  visibility: hidden;
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .introduction-section.layout-left-text {
    flex-direction: column;
    padding: 0 0 0 0;
  }

  .intro-image-pattern {
    width: 100%;
    height: 350px;
    background-position: center top;
    background-size: cover;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .intro-text-block {
    align-items: center;
    text-align: center;
    font-size: smaller;
  }

  .intro-text-block .company-description {
    text-align: center;
  }
}


/* New Footer Layout */
.footer-layout {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  padding: 40px 20px;
  min-height: 220px;
}

/* Left Section: Social media */
.footer-social {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
}

.footer-social-title {
  color: #AD8B5A;
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 15px;
  margin-left: 23px;
}

.social-icons-container {
  display: flex;
  gap: 30px;
  margin-left: 20px;
}

.footer-social-icon {
  height: 45px;
  margin-left: 10px;
}

@media screen and (max-width: 600px) {
  .footer-social-icon {
    height: 45px;
    margin-left: 0;
  }

}

/* Center Section: Logo */
.footer-logo-center {
  text-align: center;
}

.footer-logo-main {
  height: 200px;
  margin-bottom: 10px;
}

/* Right Section: Copyright */
.footer-copyright {
  position: absolute;
  bottom: 20px;
  right: 20px;
  text-align: right;
  color: #AD8B5A;
  font-size: 0.8em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-layout {
    flex-direction: column;
    align-items: center;
    padding: 30px 15px 60px;
  }

  .footer-social {
    position: static;
    transform: none;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-logo-main {
    height: 150px;
    margin-bottom: 15px;
  }

  .footer-copyright {
    position: static;
    margin-top: 20px;
    text-align: center;
  }
}


.gallery-title {
  font-size: 2.5em;
  color: #AD8B5A;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

@media screen and (max-width: 600px) {
  .gallery-title {
    font-size: 1.5em;

  }

  .scroll-container::-webkit-scrollbar {
    display: none;
  }

  /* Slider Buttons */
  .scroll-btn {
    background-color: #AD8B5A;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 10px 15px;
    margin-bottom: 15px;
  }

}

.gallery-title {
  font-size: 2.5em;
  color: #AD8B5A;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

/* Scrollable Product Gallery Styles */
.product-gallery-section {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  text-align: center;
}

.scroll-container-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 20px 0;
}

.scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px;
  width: 100%;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

/* Slider Buttons */
.scroll-btn {
  background-color: #AD8B5A;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  z-index: 1;
  transition: background 0.3s ease;
}

.scroll-btn:hover {
  background-color: #8a6e43;
}

/* Make your existing product card scroll-ready */
.product-card {
  min-width: 300px;
  max-width: 300px;
  flex-shrink: 0;
  background-color: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: scale(1.03);
}

.product-image-container {
  width: 100%;
  height: 90%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

.product-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
}

.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-card:hover .hover-img {
  opacity: 1;
}

.product-card:hover .default-img {
  opacity: 0;
}

.product-number-text {
  color: #808080;
  font-size: 0.9em;
  text-align: center;
}


/* Hide slider buttons on small screens */
@media (max-width: 768px) {
  .scroll-btn {
    display: none;
  }

  .scroll-container {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Smooth on iOS */
    overflow-x: scroll;
    gap: 16px;
    padding: 10px;
  }

  .product-card {
    scroll-snap-align: start;
  }
}

.project-title {
  color: white;
  text-align: center;
  font-size: 2.5em;
}

.project-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.project-card img {
  width: 100%;
  display: block;
}

.project-card:hover {
  transform: scale(1.03);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

@media (max-width: 900px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card {
    width: 100%;
    max-width: 300px;
    /* Adjusted for smaller screens */
  }
}

@media (max-width: 600px) {
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    width: 100%;
    max-width: 450px;
    /* Adjusted for smaller screens */
  }
}

.contact-section {
  background: #faf7f2;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.07);
  padding: 36px 32px 32px 32px;
  max-width: 440px;
  width: 100%;
  margin: 0 40px 0 0;
  /* Add right margin, remove left */
}

.contact-title {
  font-size: 2rem;
  color: #bfa14a;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

.contact-description {
  color: #6d6d6d;
  font-size: 1.05rem;
  margin-bottom: 28px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-label {
  font-size: 1rem;
  color: #bfa14a;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-input,
.contact-textarea {
  border: 1px solid #e2d9c3;
  border-radius: 7px;
  padding: 10px 12px;
  font-size: 1rem;
  background: #fff;
  color: #333;
  transition: border 0.2s;
  outline: none;
}

.contact-input:focus,
.contact-textarea:focus {
  border: 1.5px solid #bfa14a;
  background: #f9f6ee;
}

.contact-textarea {
  resize: vertical;
  min-height: 90px;
  max-height: 220px;
}

.contact-submit-btn {
  background: #bfa14a;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 12px 0;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px 0 rgba(191, 161, 74, 0.07);
  margin-top: 8px;
}

.contact-submit-btn:hover {
  background: #a88d3c;
  box-shadow: 0 4px 16px 0 rgba(191, 161, 74, 0.13);
}

.contact-info {
  border-top: 1px solid #e2d9c3;
  padding-top: 18px;
  margin-top: 8px;
}

.contact-info-title {
  font-size: 1.1rem;
  color: #bfa14a;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #6d6d6d;
  font-size: 1rem;
}

.contact-info-list li {
  margin-bottom: 7px;
}

.contact-info-list a {
  color: #bfa14a;
  text-decoration: none;
  transition: text-decoration 0.2s;
}

.contact-info-list a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .contact-main {
    justify-content: center;
    /* Center on mobile */
  }

  .contact-section {
    padding: 22px 8px 18px 8px;
    max-width: 98vw;
    margin: 0;
    /* Remove right margin on mobile */
  }

  .contact-title {
    font-size: 1.3rem;
  }
}

.contact-page-flex-container {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: center;
  margin: 2.5rem auto;
  max-width: 1200px;
  padding: 0 1rem;
  flex-wrap: wrap;
}

.contact-left {
  flex: 1 1 350px;
  max-width: 500px;
  min-width: 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 2rem 1.5rem;
  margin-bottom: 1rem;
  box-sizing: border-box;
}

.contact-right {
  max-width: 500px;
}

.contact-intro-content {
  margin-bottom: 2rem;
}

.contact-intro-title {
  font-size: 1.60rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #bfa14a;
}

.contact-intro-content p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-map-section {
  margin-top: 1.5rem;
}

.contact-map-title {
  font-size: 1.60rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: #bfa14a;
}

.contact-map-iframe-wrapper {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  background: #f7f7f7;
}

.contact-map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 200px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .contact-page-flex-container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }

  .contact-left,
  .contact-right {
    max-width: 100% !important;
    min-width: 0 !important;
  }
}

@media (max-width: 600px) {
  .contact-map-section div[style*="padding-bottom"] {
    padding-bottom: 70% !important;
  }

  .contact-intro-content h1 {
    font-size: 1.3rem;
  }

  .contact-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 400px) {
  .contact-map-section div[style*="padding-bottom"] {
    padding-bottom: 90% !important;
  }

  .contact-map-section iframe {
    min-height: 100px !important;
  }
}

@media (max-width: 900px) {
  .contact-page-flex-container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }

  .contact-left,
  .contact-right {
    max-width: 100% !important;
    min-width: 0 !important;
  }
}

@media (max-width: 600px) {
  .contact-map-section div[style*="padding-bottom"] {
    padding-bottom: 70% !important;
  }

  .contact-intro-content h1 {
    font-size: 1.3rem;
  }

  .contact-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 400px) {
  .contact-map-section div[style*="padding-bottom"] {
    padding-bottom: 90% !important;
  }

  .contact-map-section iframe {
    min-height: 100px !important;
  }

}


.big-image-holder {
  display: flex;
  flex-direction: column;
  /* Stack images vertically */
  align-items: center;
  /* Center images horizontally */
  gap: 2.5rem;
  padding: 2.5rem 1.5rem;
  box-sizing: border-box;
}

.big-image-holder .big-image {
  width: 1100px;
  max-width: 98vw;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
  background: #fff;
  transition: transform 0.2s;
  cursor: zoom-in;
  display: block;
  margin: 0 auto;
}

.big-image-holder .big-image:hover {
  transform: scale(1.04);
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.image-modal.active {
  display: flex;
}

.image-modal .modal-content {
  margin: auto;
  max-width: 98vw;
  max-height: 98vh;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
  background: #fff;
  animation: zoomIn 0.2s;
}

.close-modal {
  position: absolute;
  top: 28px;
  right: 48px;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1100;
  text-shadow: 0 2px 8px #000;
  user-select: none;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
  }

  to {
    transform: scale(1);
  }
}

@media (max-width: 1200px) {
  .big-image-holder .big-image {
    width: 98vw;
    max-width: 98vw;
  }
}

@media (max-width: 900px) {
  .big-image-holder .big-image {
    width: 100%;
    max-width: 100%;
  }

  .big-image-holder {
    gap: 1.2rem;
    padding: 1.2rem 0.5rem;
  }
}

@media (max-width: 600px) {
  .big-image-holder {
    gap: 0.7rem;
    padding: 0.7rem 0.2rem;
  }

  .big-image-holder .big-image {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
  }

  .close-modal {
    top: 12px;
    right: 20px;
    font-size: 2.2rem;
  }
}

.sponsors-section {
  padding: 40px 0 30px 0;
  text-align: center;
}

.sponsors-title {
  font-size: 2rem;
  margin-bottom: 24px;
  color: #bfa15a;
  letter-spacing: 2px;
  font-weight: 700;
}

.sponsors-logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.sponsor-logo {


  flex: 0 1 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.sponsor-logo img {
  max-width: 160px;
  max-height: 100px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.2) contrast(1.1);
  transition: filter 0.2s;
}

@media (max-width: 900px) {
  .sponsors-logos-container {
    gap: 24px;
  }

  .sponsor-logo {
    flex-basis: 120px;
  }

  .sponsor-logo img {
    max-width: 90px;
    max-height: 48px;
  }
}

@media (max-width: 600px) {
  .sponsors-logos-container {
    gap: 16px;
  }

  .sponsor-logo {
    flex-basis: 45%;
    min-width: 100px;
  }

  .sponsor-logo img {
    max-width: 70px;
    max-height: 36px;
  }
}

.section-divider {
  width: 75%;
  height: 4px;
  background-color: #bfa15a;
  margin: 40px auto;
  max-width: 1200px;
  border: #bfa15a;
  border-radius: 20px;
}


/* Custom Scrollbar Styles */

body::-webkit-scrollbar {
  width: 10px;
  background: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
  background: #AD8B5A;
  border-radius: 8px;
  border: 2px solid #f5f5f5;
}

body::-webkit-scrollbar-thumb:hover {
  background: #bfa14a;
}

body::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 8px;
}


.lang-toggle-btn {
  background: #AD8B5A;
  color: #fff;
  padding: 10px 10px;
  margin-top: 10px;
  margin-left: 10px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 15px;
  border: 1px solid #fff
}

.lang-toggle-btn:hover {
  background: #fff;
  color: #bfa15a;
  border: 1px solid #bfa15a;
}

.menu-lang-toggle {
  padding: 10px;
  text-align: center;
}

.menu-lang-toggle .lang-toggle-btn {
  display: inline-block;
}

@media (max-width: 768px) {
  .header-top-row .lang-toggle-btn {
    display: none;
  }
}


.full-photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 60px 0;
}

.photo-box {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s ease, transform 0.4s ease;
  display: block;
}

.check-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.check-btn {
  background-color: #AD8B5A;
  color: #fff;
  font-size: 1.2rem;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.check-btn:hover {
  background-color: #bfa15a;
}

.photo-box:hover img {
  filter: blur(3px) brightness(0.9);
  transform: scale(1.05);
}

.photo-box:hover .check-overlay {
  opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .full-photo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .full-photo-gallery {
    grid-template-columns: 1fr;
  }

  .photo-box {
    height: 250px;
  }
}

#title-for-product {
  font-size: 2.5rem;
  color: #AD8B5A;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}