/* -----------------------
Sacachi Stylesheet (Final Balanced with Fade Hero)
------------------------ */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Times New Roman', sans-serif;
  color: #111431;
  background-color: #ffffff;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.btn, .btn-sm {
  display: inline-block;
  background-color: #2d1513;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  margin-top: 1rem;
  transition: background 0.3s ease;
}
.btn:hover, .btn-sm:hover {
  background-color: #111431;
}
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 0;
}

/* Header */
/* ================================
   Header & Navigation Styles
   ================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #2d1513;
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header .logo {
  max-height: 60px;
  width: auto;
  background-color: #fff;
  padding: 5px;
  border-radius: 8px;
   transform: scale(1.2); /* Scale up 20% */
  transform-origin: left center;
}
.header-spacer {
  height: 10rem; /* same or slightly larger than .site-header total height */
}


/* MAIN NAV */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.main-nav .nav-item {
  position: relative;
}

.main-nav a {
  color: #ffffff;
  font-size: 1rem;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  display: inline-block;
}

.main-nav a:hover {
  color: #dddddd;
}

/* DROPDOWN STYLES */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 4px;
  z-index: 1000;
  padding: 0.5rem 0;
}

.dropdown-menu li {
  list-style: none;
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 0.75rem 1rem;
  color: #111431;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-menu li a:hover {
  background-color: #2d1513;
  color: white;
}

/* Hover Trigger */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

/* Responsive Nav (Optional if needed later) */
@media (max-width: 768px) {
  .main-nav {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
  }
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
  }
}


/* 🔥 Hero Split Layout */
.hero-split {
  display: flex;
  flex-wrap: wrap;
  height: 80vh;
  background-color: #f4f4f4;
}
.hero-left, .hero-right {
  flex: 1;
  min-width: 300px;
}
.hero-left {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111431;
  overflow: hidden;
  position: relative;
}
.product-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.product-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
}
.product-slide.active {
  opacity: 1;
  z-index: 1;
  transform: scale(1.02);
}

.hero-right {
  background: white;
  color: #111431;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-right h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-right p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Intro Section */
.intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: white;
  color: #111431;
}
.intro-text {
  flex: 1;
  padding: 2rem;
}
.intro-image {
  flex: 1;
}

/* Services Preview */
/* =============================
   Service Page Styles
   ============================= */

.service-page {
  padding: 3rem 0;
}
.service-page h1 {
  font-size: 2.5rem;
  color: #111431;
  margin-bottom: 1rem;
}
.service-page .subtitle {
  font-size: 1.1rem;
  color: #2d1513;
  max-width: 800px;
  margin-bottom: 1rem;
}
.service-page .highlight {
  font-style: italic;
  margin-bottom: 3rem;
  color: #444;
}

.service-page .service-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}
.service-page .service-row.reverse {
  flex-direction: row-reverse;
}
.service-page .service-img {
  flex: 1;
}
.service-page .service-img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.service-page .service-description {
  flex: 1;
  background-color: #f8f8f8;
  padding: 2rem;
  border-left: 15px solid #2d1513;
  border-radius: 8px;
}
.service-page .service-description h2 {
  font-size: 1.8rem;
  color: #111431;
  margin-bottom: 1rem;
}
.service-page .service-description ul {
  padding-left: 1.2rem;
}
.service-page .service-description li {
  margin-bottom: 0.8rem;
  color: #333;
  font-size: 1.05rem;
}

/* Why Sacachi */
.why-sacachi {
  background-color: #2d1513;
  color: white;
  padding: 3rem 2rem;
  border-radius: 10px;
  margin-top: 4rem;
}
.why-sacachi h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.why-sacachi ul {
  padding-left: 1.2rem;
}
.why-sacachi li {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
}


/* Products Section */
.featured-products {
  background: #111431;
  color: white;
  padding: 4rem 0;
  text-align: center;
}
.featured-products h2 {
  margin-bottom: 2rem;
}
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.product-card {
  background: #fff;
  color: #111431;
  width: 150px;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.partners {
  background: white;
  text-align: center;
  padding: 3rem 0;
  color: #111431;
  overflow: hidden;
}

.partner-scroll-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 2rem;
}


.partner-logos {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: scroll-partners 40s linear infinite;
}

.partner-logos img {
  height: 70px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
}

.partner-logos img:hover {
  transform: scale(1.1);
  opacity: 1;
}
.partners-index {
  background: #2d1513;
  text-align: center;
  padding: 3rem 0;
  color: whitesmoke;
  overflow: hidden;
}
.partner-scroll-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 2rem;
}
.partner-logos1 {
  display: flex;
  justify-content: center; /* Centers logos horizontally */
  align-items: center; /* Aligns logos vertically */
  gap: 2rem; /* Controls spacing between logos */
  width: 100%; /* Ensures the container spans the full width */
  
}

.partner-logos1 img {
  width: 100px; /* Adjusts logo size */
  height: auto; /* Maintains aspect ratio */
  align-items: center;
}
.partner-logos1 img:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* Optional: pause on hover */
.partner-scroll-wrapper:hover .partner-logos {
  animation-play-state: paused;
}

@keyframes scroll-partners {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* CTA */
/* ================================
   Contact Page Styles
   ================================ */
.contact-page h1 {
  font-size: 2.5rem;
  color: #111431;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-wrapper {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 250px;
  background-color: #f8f8f8;
  padding: 2rem;
  border-left: 15px solid #2d1513;
  border-radius: 8px;
}

.contact-info h2 {
  color: #2d1513;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.contact-info a {
  color: #2d1513;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  flex: 1;
  min-width: 280px;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #111431;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-family: 'Times New Roman', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2d1513;
}

.contact-form button.btn {
  background-color: #2d1513;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button.btn:hover {
  background-color: #111431;
}

/* WhatsApp floating button styling */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
.whatsapp-float img {
  width: 45px;
  height: 45px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-info, .contact-form {
    width: 100%;
  }

  .contact-page h1 {
    font-size: 2rem;
  }
}

/* === Footer === */
.site-footer {
  background-color: #111431;
  color: white;
  padding: 1rem 0 0.5rem;
}

/* Footer layout container */
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Shared box style */
.footer-box {
  background-color: #1a1d3d;
  padding: 1rem;
  border-radius: 10px;
  flex: 1;
  min-width: 260px;
  border-left: 10px solid #2d1513;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Header inside each box */
.footer-box h2 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: white;
  font-weight: 600;
}

/* Footer Info Box (Left) */
.footer-info {
  line-height: 1.7;
  text-align: left;
}

.footer-info p {
  margin: 0.4rem 0;
}

.footer-info a {
  color: white;
  text-decoration: underline;
}
.footer-info a:hover {
  text-decoration: none;
}

/* Footer Social Box (Left) */
.footer-social {
  
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem;
  text-align: center;
}

.footer-social img {
  width: 42px;
  height: 42px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
}
.footer-social a:hover img {
  transform: scale(1.15);
  opacity: 1;
}

/* Optional: title alignment per box */
.footer-social h2 {
  text-align: center;
}
.footer-info h2 {
  text-align: left;
}

/* Footer bottom copyright */
.footer-bottom {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
}
.footer-icon-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.3rem;
}


/* Responsive layout */
@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-info {
    text-align: left;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .hero-split {
    flex-direction: column;
    height: auto;
  }
  .hero-right {
    padding: 2rem;
    text-align: center;
  }
  .intro {
    flex-direction: column;
  }
  .services-grid, .product-grid {
    flex-direction: column;
    align-items: center;
  }
  .site-header {
    padding: 0.5rem 0;
  }
  .main-nav {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
  }
  .main-nav a {
    margin-left: 1rem;
    font-size: 0.9rem;
  }
}
/* =============================
   About Page Specific Styles
   ============================= */

   .about-banner {
    background-color: #2d1513;
    color: white;
    text-align: center;
    padding: 4rem 1rem;
  }
  .about-banner h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
  
  .about-intro {
    background-color: #ffffff;
    padding: 3rem 0;
  }
  .about-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse; /* Shows image left, text right */
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  .about-image {
    flex: 1;
    min-width: 300px;
  }
  .about-image img {
    width: 100%;
    border-radius: 8px;
  }
  .about-text {
    flex: 1;
    min-width: 300px;
  }
  .about-text h2 {
    font-size: 2rem;
    color: #111431;
  }
  .underline {
    width: 50px;
    height: 3px;
    background-color: #2d1513;
    margin: 10px 0 20px;
  }
  .about-text p {
    font-size: 1.05rem;
    color: #333;
  }
  
  .about-details {
    padding-top: 2rem;
  }
  .about-details h2 {
    color: #111431;
    margin-top: 2rem;
  }
  .about-details ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
  }
  .about-details li {
    margin-bottom: 1rem;
  }
  /* =============================
   About Page Section Blocks
   ============================= */

.about-block {
  padding: 4rem 1rem;
  text-align: left;
  color: white;
}
.about-block-content {
  max-width: 1000px;
  margin: auto;
  padding: 1rem 2rem;
}
.about-block h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  color: inherit;
}
.about-block h2 span {
  border: 2px solid white;
  padding: 0.5rem 1.5rem;
  display: inline-block;
  font-weight: 600;
}
.about-block p, .about-block ul {
  font-size: 1.1rem;
  line-height: 1.8;
}
.about-block ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
}
.about-block li {
  margin-bottom: 0.75rem;
}

/* Background Themes */
.dark-theme {
  background-color: #2d1513;
}
.light-theme {
  background-color: #111431;
}
.white-theme {
  background-color: #f4f4f4;
  color: #111431;
}
.white-theme h2 span {
  border-color: #2d1513;
  color: #2d1513;
}
/* =============================
   Product Showcase (Scoped to .product-page)
   ============================= */

.product-page h1 {
  font-size: 2.5rem;
  color: #111431;
  margin-bottom: 0.5rem;
}
.product-page .subtitle {
  color: #2d1513;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 800px;
}

.product-page .product-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}
.product-page .product-row.reverse {
  flex-direction: row-reverse;
}

.product-page .product-image {
  flex: 1;
}
.product-page .product-image img {
  width: 75%;
  border-radius: 10px;
  object-fit: cover;
}

.product-page .product-description {
  flex: 1;
  background-color: #f6f6f6;
  padding: 2rem;
  border-left: 6px solid #2d1513;
  border-radius: 8px;
}
.product-page .product-description h2 {
  font-size: 1.8rem;
  color: #111431;
  margin-bottom: 0.5rem;
}
.product-page .product-description .line {
  width: 60px;
  height: 3px;
  background-color: #2d1513;
  margin-bottom: 1rem;
}
.product-page .product-description p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .product-page .product-row,
  .product-page .product-row.reverse {
    flex-direction: column;
  }
  .product-page .product-description {
    border-left: none;
    border-top: 4px solid #2d1513;
  }
}

  