body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 20px;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;

}

:root {
  --nav-bg-color: (#1C1C1C);
  --highlight-color: (#C9A24D);
  --sec-bg-color: (#F5F5F5);
  --bg-color: (#FFFFFF);
  --text-color: (#2E2E2E);
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

li {
  margin: 0;
  padding: 0;
}


.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Navbar */


/* Logo */
.navbar-brand img {
  height: 55px;
}

/* Links */
.navbar-nav .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #111;
  padding: 10px 18px;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: #c59d5f;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #c59d5f;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 25px;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 25px;
}

/* Remove border */
.navbar-toggler {
  border: none;
  box-shadow: none;
  outline: none;
}

/* Remove focus & active styles */
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none;
  box-shadow: none;
}

/* Optional: remove default background */
.navbar-toggler-icon {
  background-image: none;
}

/* Login */
.login-btn {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.login-btn:hover {
  color: #c59d5f;
}

/* Cart */
.cart-btn {
  position: relative;
  font-size: 18px;
  color: #111;
  transition: color 0.3s ease;
}

.cart-btn:hover {
  color: #c59d5f;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #c59d5f;
  color: #fff;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

/* Mobile */
@media (max-width: 991px) {
  .navbar-nav {
    padding-top: 15px;
  }

  .header-actions {
    margin: 15px 0 0;
    justify-content: flex-start;
  }

  .navbar-nav .nav-link::after {
    left: 0;
  }
}

/* header close */

.banner .owl-theme .owl-dots .owl-dot {
  display: none;
}

.banner .owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  display: none;
}

/* 000 */
.banner {
  position: relative;
}

.banner-box {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.banner-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomSlow 10s ease-in-out infinite;
}

/* Overlay */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.449));
  z-index: 1;
}

/* Content */
.banner-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10%;
  color: #fff;
}

.banner-content h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 15px;
  max-width: 650px;
}

.banner-content p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Button */
.b-btn a {
  display: inline-block;
  padding: 14px 36px;
  background: #c59d5f;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.b-btn a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

/* Text Animations */
.animate-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.4s;
}

.delay-2 {
  animation-delay: 0.7s;
}

/* Keyframes */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomSlow {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}



/* about */
.about-us {
  padding: 50px 0;
  background: #f9fafb;
  overflow: hidden;
}

/* Text */
.about-content {
  animation: fadeLeft 1s ease forwards;
}

.section-tag {
  letter-spacing: 2px;
  font-weight: 600;
  color: #777;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-content h2 span {
  color: #c59d5f;
}

.about-content .lead {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

/* Points */
.about-point {
  list-style: none;
  padding: 0;
}

.about-point li {
  font-size: 15px;
  margin-bottom: 12px;
  color: #333;
}

.about-point i {
  color: #c59d5f;
  margin-right: 8px;
}

/* Gallery */
.about-gallery {
  animation: fadeRight 1s ease forwards;
}

.image-box {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.image-box img {
  width: 100%;
  transition: transform 0.6s ease;
  border-radius: 14px;
}

.image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.image-box:hover img {
  transform: scale(1.08);
}

.image-box:hover::after {
  opacity: 1;
}

/* Animations */
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* galler-show */
.gallery-section {
  padding: 50px 0;
  background: #f9fafb;
}

/* Grid Structure */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 20px;
}

/* Item Sizes */
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  animation: fadeUp 1s ease forwards;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.2));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Text */
.gallery-overlay h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

.gallery-overlay span {
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 2;
    grid-row: auto;
  }
}



/* contact us */
.contact-us {
  padding: 50px 0;
  background: linear-gradient(135deg, #f9fafb, #ffffff);
}

/* Left Info */
.contact-info {
  animation: fadeLeft 1s ease forwards;
}

.contact-info h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-info h2 span {
  color: #c59d5f;
}

.contact-info p {
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
  max-width: 400px;
}

/* Contact list */
.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  font-size: 15px;
}

.contact-list i {
  width: 42px;
  height: 42px;
  background: #c59d5f;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-right: 15px;
}

/* Form */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  animation: fadeRight 1s ease forwards;
}

.contact-form h4 {
  font-weight: 600;
  margin-bottom: 25px;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c59d5f;
  box-shadow: 0 0 0 3px rgba(197, 157, 95, 0.2);
  outline: none;
}

/* Button */
.contact-form button {
  padding: 14px 40px;
  background: #c59d5f;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.4s ease;
}

.contact-form button:hover {
  background: #000;
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* product */
.product-collection {
  padding: 50px 0;
  background: #ffffff;
}

/* Section Heading */
.section-heading {
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-heading h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-heading h2 span {
  color: #c59d5f;
}

.section-heading p {
  font-size: 15px;
  color: #666;
}

/* Cards */
.collection-card {
  position: relative;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  animation: fadeUp 1s ease forwards;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

/* Overlay */
.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.25));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: #fff;
  opacity: 0;
  transition: all 0.6s ease;
}

.collection-card:hover img {
  transform: scale(1.08);
}

.collection-card:hover .collection-overlay {
  opacity: 1;
}

/* Text */
.collection-overlay h3 {
  font-size: 32px;
  font-weight: 700;
}

.collection-overlay p {
  font-size: 14px;
  margin: 10px 0 25px;
  opacity: 0.9;
}

/* Button */
.collection-btn {
  display: inline-block;
  width: fit-content;
  padding: 12px 34px;
  border-radius: 30px;
  background: #c59d5f;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
}

.collection-btn:hover {
  background: #fff;
  color: #000;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* footer */
.main-footer {
  background: #0e0e0e;
  color: #aaa;
  padding-top: 80px;
}

/* Brand */
.footer-brand h3 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

.footer-brand h3 span {
  color: #c59d5f;
}

.footer-brand p {
  font-size: 14px;
  margin: 20px 0 25px;
  line-height: 1.7;
}

footer .logo img {
  width: 242px;
  background-color: #ffffff;
  border-radius: 10px;
    padding: 12px;
}



/* Social */
.social-links {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 0;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #fff;
  transition: all 0.4s ease;
}

.social-links a:hover {
  background: #c59d5f;
  transform: translateY(-4px);
}

/* Titles */
.footer-title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 30px;
  height: 2px;
  background: #c59d5f;
  position: absolute;
  left: 0;
  bottom: -8px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 6px;
}

/* Newsletter */
.footer-text {
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-form {
  display: flex;
  background: #1a1a1a;
  border-radius: 30px;
  overflow: hidden;
}

.footer-form input {
  flex: 1;
  padding: 12px 18px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 14px;
}

.footer-form input:focus {
  outline: none;
}

.footer-form button {
  width: 50px;
  background: #c59d5f;
  border: none;
  color: #fff;
  transition: background 0.3s ease;
}

.footer-form button:hover {
  background: #fff;
  color: #000;
}

/* Bottom */
.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-bottom-inner span {
  color: #c59d5f;
}

/* Responsive */

/* footer end */








/* media */
@media(max-width:1175px) {
  .banner-box h1 {
    color: #FFFFFF;
    font-size: 35px;
  }


}

/* Responsive */
@media (max-width: 991px) {
  .collection-card {
    height: 420px;
  }

}


@media (max-width: 576px) {


  .collection-card {
    height: 350px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
  }

  .navbar-brand img {
    width: 180px;

  }

  footer .address br {
    display: none;
  }



  /* banner */
  .banner-content h1 {
    font-size: 25px !important;
    font-weight: 700;
    margin-bottom: 15px;
    max-width: 650px;
  }

  .banner-content p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 30px;
    opacity: 0.9;
  }

  /* Button */
  .b-btn a {
    display: inline-block;
    padding: 10px 30px;
    background: #c59d5f;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.4s ease;
  }



}

@media (max-width: 768px) {
  .banner-box {
    height: 70vh;
  }

  .banner-content h1 {
    font-size: 32px;
  }

  .banner-content p {
    font-size: 14px;
  }

  .contact-info h2 {
    font-size: 32px;
  }

  .contact-form {
    padding: 30px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}