/* index.html style */
body {
  font-family:Arial, Helvetica, sans-serif;
  background-color: #e0e5e4;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

header ,section {
    background-color: #36655c;
    margin: -10px;
}

.container {
  max-width: 1300px;
  margin: auto !important;
  padding: 0 2rem !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar {
  font-size: 2rem;
  margin-top: 1rem;
  font-weight: bold;
  color: #ffffff;
}

.navbar span {
  color: #f3a85d;
}

.custom-navbar-nav {
  margin-top: 2.5rem;
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.custom-navbar-nav li a {
  color: #d3cfcf;
  font-weight: 550;
  transition: color 0.3s ease;
}

.custom-navbar-nav img {
  width: 20px;
  height: 20px;
}

.custom-navbar-nav a:hover img {
  transform: scale(1.2);
}

.custom-navbar-nav li a:hover {
  color: #d9832e;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  background-color: #f3f0f0;
  min-width: 150px;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1000;
  padding: 8px 0;
}

.dropdown-menu a {
  color: rgb(70, 66, 66) !important;
  color: #000000;
  padding: 8px 16px;
  display: block;
  transition: background-color 0.3s;
}

.dropdown-menu a:hover {
  background-color: #dcd7d7;
}

.profile-menu-container.active .dropdown-menu {
  display: block;
}

/* Section */
.Main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 2rem;
  max-width: 1300px;
  margin: auto;
}

.textarea h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color:#fff;
}

.textarea h1 span {
  display: block;
  color:#d9832e;
}

.textarea p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #d3cfcf;
  max-width: 500px;
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0); 
  }
  50% { 
    transform: translateY(-20px); 
  }
}

.hero-img-wrap img {
  max-width: 750px;
  animation: float 3s ease-in-out infinite;
}

.btn-secondary, .btn-white-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin-right: 1rem;
  margin-top: 1.5rem;
  border-radius: 30px;
  font-weight: 500;
}

.btn-secondary {
  background-color: #d9832e;
  color: #fff;
}

.btn-white-outline {
  border: 2px solid #d9832e;
  color: #d9832e;
}

.btn-secondary:hover {
    background-color: #a4611e;
}

.btn-white-outline:hover {
    color: #fff;
    border-color: #ffffff;
}

/* Product Section */
.product-details {
  display: flex;
  justify-content: space-between;
  padding: 6rem 6rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.section-- {
  flex: 1.25;
  min-width: 200px;
}

.section-title {
    color: #1c1d1c;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin-right: 1rem;
  margin-top: 1.5rem;
  border-radius: 5px;
  font-weight: 500;
  background-color: #313030;
  color: #fff;
}

.mb-2 {
    color: #333;
  line-height: 1.8;
}

.btn:hover {
    background-color:#181818 ;
}

.product-item-1, .product-item-2 {
  flex: 1;
  text-align: center;
}

.img-fluid-1 {
    max-width: 420px;
} 

.img-fluid-2 {
    max-width: 300px;
}

.product-item {
  display: block;
  padding: 1rem;
  border-radius: 1rem;
  transition: transform 0.3s;
}

.product-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 26px rgba(0, 0, 0, 0.1);
  background: #f3f3f3;
}

.product-title {
  margin-top: 0.5rem;
  font-size: 1.2rem;
}

.product-item img {
  transition: transform 0.4s ease;
}

.product-item:hover img {
  transform: scale(1.03);
}
.product-price {
  color: #d9832e;
  font-weight: bold;
}

.product-title {
    color: #2d3132;
}

.product-price {
    font-weight: 800;
    color:#201f1f;
}

/* Why Choose Us */
.why-choose-us-section {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 130px;
  align-items: center;
  max-width: 1250px;
  margin: auto;
  padding: 60px;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #24423c;
  margin-bottom: 10px;
}

.section-title p {
  color: #424242;
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.d-block {
  display:flexbox;
}

.feature {
  padding: 10px;
}

.feature h3 {
  font-size: 1.1rem;
  font-weight: lighter;
  color: #000000;
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.feature h3::before {
  content: '✓';
  position: absolute;
  left: 0;
  color:#34544d;
  font-weight: bold;
}

.feature p {
  color: #4e4e4e;
  font-size: 1rem;
  line-height: 1.2;
  padding-left: 25px;
}

.col-2 {
  display: flex;
  justify-content: center;
}

.img-wrap-why-choose-us {
  border-radius: 30px;
  box-shadow: 0 20px 30px rgba(0,0,0,0.5);
}


/* Blog Section Styling */
.blog-section {
  background: #f7f7f7;
  padding: 6rem 0 4rem 0;
}

.blog-section .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
}

.blog-section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.blog-section-title h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #24423c;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.links-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}

.links-wrap a {
  color: #d9832e;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.links-wrap a:hover {
  color: #a4611e;
}

.blogs-block-wrap {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.post-content-entry {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  max-width: 320px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.post-content-entry:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 16px 32px rgba(0,0,0,0.13);
  background: #f3f3f3;
}

.post-content-entry img {
  border-radius: 0.8rem;
  margin-bottom: 1.2rem;
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.post-content-entry h3 {
  font-size: 1.15rem;
  color: #2d3132;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}



/* Footer Section Styling */
.footer-section {
    background: #222;
    color: #fff;
    padding: 28px 0 10px 0;
    font-family: 'Raleway', sans-serif;
}

.section-title-footer {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo-wrap {
    margin-bottom: 10px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
}

.footer-logo span {
    color: #ffb347;
}

.section-title-footer p {
    color: #bbb;
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.social-links {
    margin-bottom: 18px;
}

.social-links a {
    color: #fff;
    margin: 0 7px;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.col-lg-12 {
    display: flex;
    justify-content: center;
    gap: 22px; 
    margin-bottom: 18px; 
    flex-wrap: wrap;
}

.first-list, .second-list, .third-list {
    list-style: none;
    padding: 0;
}

.first-list li, .second-list li, .third-list li {
    margin-bottom: 6px;
}

.first-list a, .second-list a, .third-list a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-copyright {
    border-top: 1px solid #333;
    margin-top: 18px;
    padding-top: 8px; 
    text-align: center;
}

.Copyright-text {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}


/* Catalog styling */
.product-details-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
    padding: 40px 20px;
    background: #f8f9fa;
}
.product-item-11 {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
    width: 260px;
    margin-bottom: 18px;
    transition: transform 0.18s;
}
.product-item-11:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.product-item-22 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 24px 16px;
}
.img-fluid {
    width: 180px;
    height: 180px;
    margin-bottom: 16px;
}
.product-title-1 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 8px 0 4px 0;
    color: #393939;
    text-align: center;
}
.product-price-1 {
    color: #000000;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.cart-btn {
    background: #c4764f;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 22px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.cart-btn:hover {
    background: #cf5b20;
}


/* Cart list Styleing */
.cart-list {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: rgb(235, 233, 233);
  box-shadow: -50px 0 15px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.cart-list.active {
  right: 0;
}

.cart-header {
  padding: 10px;
  border-bottom: 1px solid #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-cart {
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  margin-bottom: 15px;
  border-bottom: 1px solid #5a5858;
  padding-bottom: 15px;
}

.cart-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  margin-right: 15px;
}

.cart-item-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.cart-item-price {
  color: #13402c;
  font-size: 1rem;
  font-weight: 700;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid #303030;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: bold;
}

.checkout-btn {
  width: 100%;
  padding: 12px;
  background: #1e4039;
  color: white;
  font-size: large;
  border: none;
  cursor: pointer;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.65);
  z-index: 999;
  display: none;
}

.overlay.active {
  display: block;
}




/* contact us styling */
.contact-block {
  max-width: 600px;
  margin: 50px auto;
  padding: 60px;
  background: #cfd2d2;
  border-radius: 25px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.4);
}

.input-section {
  margin-bottom: 30px;
}

.input-section label {
  display: block;
  margin-bottom: 5px;
  font-weight: 550;
  color: #07372d;
}

.input-section input, .input-section textarea {
  width: 95%;
  padding: 15px;
  border: 1px solid #7b7a7a;
  border-radius: 10px;
  font-size: 15px;
  transition: border-color 0.3s;
}


.input-section textarea {
  min-height: 120px;
  resize: vertical;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #1e4039;
  color: white;
  border-radius: 20px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #135448;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .navbar {
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }

  .custom-navbar-nav {
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
  }

  .Main {
    flex-direction: column;
    text-align: center;
  }

  .hero-img-wrap img {
    max-width: 100%;
    animation: none;
  }

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

  .product-item-1, .product-item-2 {
    width: 100%;
    max-width: 300px;
  }

  .why-choose-us-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .blog-section .blogs-block-wrap {
    flex-direction: column;
    align-items: center;
  }

  .blog-section .post-content-entry {
    max-width: 90%;
  }

  .cart-list {
    width: 90%;
    right: -90%;
  }

  .cart-list.active {
    right: 0;
  }

  .contact-block {
    width: 90%;
    padding: 40px;
  }

  .input-section input, .input-section textarea {
    width: 100%;
  }

  .product-details-2 {
    flex-direction: column;
    align-items: center;
  }

  .product-item-11 {
    width: 100%;
    max-width: 300px;
  }

  .product-item-22 {
    width: 100%;
    max-width: 300px;
  }

  .img-fluid {
    width: 100%;
    height: auto;
  }

  .cart-footer {
    padding: 15px;
  }

  .cart-total {
    font-size: 1rem;
  }

  .checkout-btn {
    padding: 10px;
    font-size: 1rem;
  }

  .footer-section {
    padding: 20px 0;
  }

  .footer-logo {
    font-size: 1.2rem;
  }

  .footer-logo-wrap {
    margin-bottom: 15px;
  }

  .section-title-footer p {
    font-size: 0.9rem;
  }

  .social-links a {
    font-size: 1rem;
  }

  .col-lg-12 {
    flex-direction: column;
    align-items: center;
  }

  .first-list, .second-list, .third-list {
    text-align: center;
    margin-bottom: 10px;
  }

  .first-list a, .second-list a, .third-list a {
    font-size: 0.9rem;
  }

  .footer-copyright {
    font-size: 0.8rem;
    padding-top: 10px;
  }
  
}