* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f1eae2;
  color: #2b2b2b;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 80px;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  height: 80px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  height: 80px;
}
.navbar-logo {
  width: 81px;
  height: 50px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
}
.nav-links li a {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  color: #68462F;
  text-decoration: none;
  transition: color 0.2s;
  padding: 8px 0;
  position: relative;
}

.nav-links li a:hover,
.nav-links li a:focus {
  color: #d2691e;
}

.right-icons {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 80px;
 
}
.right-icons a {
  width: 41px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  
 
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  transition: background 0.2s;
  margin-left: 0;
  box-sizing: border-box;
  text-decoration: none;
  opacity: 1;
  border: none;
  box-shadow: none;
}
.right-icons a img.nav-icon {
  width: 24px;
  height: 24px;
}
.nav-icon:hover {
  transform: scale(1.1);
}
.right-icons a:hover,
.right-icons a:focus {
  
  color: #fff;
  outline: none;
  border: none;
  box-shadow: none;
}

@media (max-width: 900px) {
  .navbar-inner {
    flex-direction: column;
    height: auto;
    padding: 12px 8px;
  }
  .nav-links {
    flex-direction: column;
    gap: 18px;
    width: 100%;
    margin: 12px 0;
  }
  .logo, .right-icons {
    height: auto;
  }
  .right-icons a {
    width: 41px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    transition: background 0.2s;
    margin-left: 0;
    box-sizing: border-box;
    text-decoration: none;
    opacity: 1;
    border: none;
    box-shadow: none;
  }
  .logo img {
    height: 40px;
  }
}

/* Remove old/redundant navbar styles */
.custom-navbar, .custom-navlinks, .custom-navlinks .nav-link, .icon-link, .icon-link:hover {
  all: unset;
}

.hero {
  background-image:url(./images/bannner.png.jpeg);
  background-size: cover;
  background-position: center;
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: 12px;
}

.overlay h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 16px;
  margin-bottom: 20px;
}

.cta-button {
  background: #7f1d1d;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
}

.customization-tag {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #eee0d0;
  padding: 20px 30px;
  border-radius: 30px;
  font-size: 14px;
  max-width: 700px;
  text-align: center;
}
.cart-item img{
  width: 10px;
}

.how-it-works {
  padding: 100px 20px 50px;
  background-color: #f1eae2;
  text-align: center;
}

.how-it-works h2 {
  color: #7f1d1d;
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: bold;
}

.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.step-row {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 900px;
  width: 100%;
}

.step-row.reverse {
  flex-direction: row-reverse;
}

.step {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: left;
  flex: 1;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #991b1b;
}

.step p {
  font-size: 14px;
  color: #333;
}

.step-img {
  flex-shrink: 0;
}

.step-img img {
  max-width: 100px;
}

.customer-gallery {
  text-align: center;
  padding: 60px 20px;
  background-color: #f1eae2;
}

.customer-gallery h2 {
  color: #7f1d1d;
  font-size: 24px;
  margin-bottom: 40px;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 150px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
html{
  scroll-behavior: smooth;
}
.gallery img {
  width: 220px;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.btn-container {
  margin-top: 10px;
}

.inspire-button {
  background-color: #7f1d1d;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .hero {
    height: auto;
    padding: 60px 20px;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step-row {
    flex-direction: column;
    align-items: center;
  }

  .gallery {
    flex-direction: column;
    align-items: center;
  }

  .gallery img {
    width: 80%;
    height: auto;
  }
}


  .custom-form {
    background: #f1eae2;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
  }

  .form-container {
    background: #fff7f0;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
  }

  .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

  .form-row input,
  .form-row textarea {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #e0e0e0;
  }

  textarea {
    min-height: 100px;
    resize: vertical;
  }

  button[type="submit"] {
    background-color: #991b1b;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }

  button[type="submit"]:hover {
    background-color: #7f1d1d;
  }

  

  /* Navbar Layout */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  background-color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* Left logo */
.logo img {
  height: 50px;
}

/* Centered nav */
.center-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
}

.nav-links li {
  cursor: pointer;
}

/* Right icons */
/* Navigation Links */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  padding: 5px 0;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #000;
}

.nav-links a::after {
  background-color: transparent !important;
}

/* Nav Icons */
.nav-icons {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.nav-icon:hover {
  transform: scale(1.1);
}

.nav-icon img {
  width: 20px;
  height: auto;
  display: block;
}

.right-icons img {
  height: 24px;
  cursor: pointer;
}

.nav-links li a,
.nav-links li a:active,
.nav-links li a:focus,
.nav-links li a[aria-current="page"] {
  border-bottom: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

@media (max-width: 600px) {
  .navbar-inner {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100%;
    padding: 0 8px;
    height: auto;
  }
  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: auto;
    padding: 0;
    margin: 0;
  }
  .nav-links li {
    margin: 0;
    padding: 0;
  }
  .nav-links li a {
    font-size: 16px;
    padding: 6px 4px;
  }
}

