/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
  --bg-cream: #F8F5F0;
  --light-brown: #D2B48C;
  --dark-brown: #5C4033;
  --grey-text: #6D6D6D;
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Open Sans', sans-serif;
}

body {
  font-family: var(--body-font);
  background-color: var(--bg-cream);
  color: var(--grey-text);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--dark-brown);
  font-weight: 700;
}

/* Navbar */
.navbar {
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}
.navbar.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1030;
}
.navbar-brand {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--dark-brown) !important;
  font-size: 1.5rem;
}
.navbar-logo {
  height: 60px;
  width: auto;
}
.footer-logo {
  height: 80px;
  width: auto;
}
.nav-link {
  font-family: var(--heading-font);
  color: var(--dark-brown) !important;
  font-weight: 600;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--light-brown) !important;
}

/* Buttons */
.btn-primary {
  background-color: var(--dark-brown);
  border-color: var(--dark-brown);
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: var(--light-brown);
  border-color: var(--light-brown);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: var(--dark-brown);
  border-color: var(--dark-brown);
  font-family: var(--heading-font);
  font-weight: 600;
}
.btn-outline-primary:hover {
  background-color: var(--dark-brown);
  color: #fff;
}

/* Hero Section */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 160px 0;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(92, 64, 51, 0.7); /* Dark brown overlay */
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  color: #fff;
  font-size: 3.5rem;
  margin-bottom: 20px;
}
.hero-content p {
  color: var(--bg-cream);
  font-size: 1.25rem;
  margin-bottom: 30px;
}

/* Sections */
.section-padding {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.section-title .line {
  width: 60px;
  height: 3px;
  background-color: var(--light-brown);
  margin: 0 auto;
}

/* Cards */
.card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.card-img-top {
  height: 250px;
  object-fit: cover;
}
.card-body {
  padding: 25px;
}
.card-title {
  margin-bottom: 15px;
}

/* Feature Icons (Why Choose Us) */
.feature-box {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  height: 100%;
}
.feature-box:hover {
  transform: translateY(-5px);
}
.feature-icon {
  font-size: 2.5rem;
  color: var(--light-brown);
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: var(--dark-brown);
  color: #fff;
  padding: 60px 0 20px;
}
footer h5 {
  color: var(--light-brown);
  margin-bottom: 20px;
}
footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
footer a:hover {
  color: var(--light-brown);
}
.social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 1.2rem;
  color: #fff;
  background: rgba(255,255,255,0.1);
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s;
}
.social-icons a:hover {
  background: var(--light-brown);
}

/* Single Product */
.product-single-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Contact Info Box */
.contact-info-box {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.contact-icon-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.contact-icon-row i {
  font-size: 1.5rem;
  color: var(--light-brown);
  margin-right: 15px;
}

/* Form Controls */
.form-control, .form-select {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.form-control:focus, .form-select:focus {
  border-color: var(--light-brown);
  box-shadow: 0 0 0 0.25rem rgba(210, 180, 140, 0.25);
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}
