* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #e7f0ef;
  color: #1f2d2b;
}
html,body{
  width: 100%;
  overflow-x: hidden;
}
.hero,
.exclusive-products {
  overflow-x: hidden;
}
/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
 padding: 20px clamp(20px, 5vw, 80px);
}

/* .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 60px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
} */

/* Logo */
.logo img {
  width: 140px;
  height: auto;
  object-fit: contain;
}

.logo {
  font-size: 24px;
  font-weight: 600;
}

.nav-links a {
  margin: 0 18px;
  text-decoration: none;
  color: #1f2d2b;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #1f2d2b;
  transition: width 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: #000;
}

.nav-links a:hover::after {
  width: 100%;
}
.nav-btn {
  padding: 10px 22px;
  border-radius: 20px;
  border: none;
  background: #1f2d2b;
  color: #fff;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #1f2d2b;
  transition: 0.3s;
}
.nav-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-right: 15px;
}
/* .mobile-icons {
  display: none;
} */

.mobile-shop-btn {
  display: none;
  margin: 15px auto 0;
  padding: 12px 28px;
  border-radius: 25px;
  background: #1f2d2b;
  color: #fff;
  border: none;
}
.nav-icons i {
  font-size: 18px;
  color: #1f2d2b;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-icons i:hover {
  color: #000;
  transform: translateY(-2px);
}
/* ================= SKEW BUTTON HOVER ================= */
.primary-btn,
.secondary-btn,
.nav-btn,
.mobile-shop-btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* Sliding skew layer */
.primary-btn::before,
.secondary-btn::before,
.nav-btn::before,
.mobile-shop-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: skewX(-20deg);
  transition: left 0.4s ease;
}

/* Hover effect */
.primary-btn:hover::before,
.secondary-btn:hover::before,
.nav-btn:hover::before,
.mobile-shop-btn:hover::before {
  left: 120%;
}

.primary-btn:hover,
.secondary-btn:hover,
.nav-btn:hover,
.mobile-shop-btn:hover {
  transform: skewX(-5deg) translateY(-2px);
}

/* MODAL BASE */
.sresha-modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.sresha-success-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.sresha-success-content {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  animation: fadeIn 0.3s;
}

.sresha-success-content h3 {
  margin-top: 20px;
  color: #2c3e50;
}

.sresha-success-content p {
  margin: 15px 0;
  color: #555;
}

.sresha-success-content button {
  padding: 10px 25px;
  background: #3399cc;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.sresha-success-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 25px;
  cursor: pointer;
  color: #333;
}


.sresha-modal-content {
  background: #e7f0ef;
  padding: 30px;
  border-radius: 15px;
  max-width: 400px;
  width: 90%;
  position: relative;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* LOGO */
.sresha-modal-logo img {
  width: 100px;
  margin-bottom: 20px;
}

/* CLOSE BUTTON */
.sresha-close-btn {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}
.sresha-close-btn:hover { color: #009688; }

/* FORMS */
.sresha-form-container { display: none; } 
.sresha-form-container.sresha-active { display: block; } 

.sresha-form-container h2 { color: #009688; margin-bottom: 20px; }
.sresha-form-container label { display: block; text-align: left; margin-bottom: 5px; color: #1f2d2b; font-weight: 600; }
.sresha-form-container input { width: 100%; padding: 10px; margin-bottom: 15px; border-radius: 6px; border: 1px solid #b3c2c1; }
.sresha-form-container input:focus { border-color: #009688; outline: none; }

.sresha-submit-btn {
  width: 100%; padding: 12px; border: none; border-radius: 8px;
  color: #fff; font-weight: 600; font-size: 16px; cursor: pointer; margin-top: 5px;
  transition: all 0.3s ease;
}
.sresha-login-btn { background: linear-gradient(135deg, #1f2d2b, #3a4442); }
.sresha-login-btn:hover { transform: scale(1.05); }
.sresha-register-btn { background: linear-gradient(135deg, #00bfa5, #009688); }
.sresha-register-btn:hover { transform: scale(1.05); }

/* Switch links */
.sresha-form-container p { font-size: 14px; margin-top: 12px; }
.sresha-form-container p span { color: #009688; font-weight: 600; cursor: pointer; }
.sresha-form-container p span:hover { text-decoration: underline; }

.sresha-nav-btn {
  padding: 10px 20px;
  background: #009688;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
}
.sresha-nav-btn:hover { background: #00bfa5; }

@media (max-width: 500px) {
  .sresha-modal-content { margin: 50px 15px; padding: 25px 20px; }
  .sresha-modal-logo img { width: 80px; }
}



.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(40px, 6vw, 80px);
  min-height: calc(100vh - 80px);
}

.hero-text {
  max-width: 520px;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text p {
  color: #4a5f5b;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.primary-btn {
  padding: 14px 28px;
  border-radius: 25px;
  background: #1f2d2b;
  color: #fff;
  border: none;
}

.secondary-btn {
  padding: 14px 28px;
  border-radius: 25px;
  background: transparent;
  border: 1px solid #1f2d2b;
  color: #1f2d2b;
}


.hero-image img {
  width: 520px;
  border-radius: 110px 220px 0 0;
  animation: floatUp 4s ease-in-out infinite;
  
}
@keyframes floatUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.grid-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(2, auto);
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
      align-items: center;
    }

    /* Animation for all blocks */
    .animate {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 1s ease forwards;
    }

    .animate-delay-1 {
      animation-delay: 0.2s;
    }
    .animate-delay-2 {
      animation-delay: 0.4s;
    }
    .animate-delay-3 {
      animation-delay: 0.6s;
    }
    .animate-delay-4 {
      animation-delay: 0.8s;
    }

    @keyframes fadeUp {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

  
    .text-block {
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 30px;
      border: 2px solid #ddd;
      border-radius: 12px;
      background-color: #fff;
      transition: all 0.3s ease;
    }

    .text-block:hover {
      border-color: #555;
      box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .text-block h2 {
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.3;
    }

    .text-block p {
      font-size: 1rem;
      line-height: 1.6;
      color: #555;
    }

    .text-block button {
      padding: 12px 25px;
      width: fit-content;
      /* background-color: #1a73e8; */
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    

    /* Image blocks */
    .image-block img {
      width: 100%;
      height: 400px;
      border-radius: 12px;
      object-fit: cover;
      display: block;
      /* transition: 2s all ease-out; */
      animation: zoomInOut 6s ease-in-out infinite;
    }
    .image-block:nth-child(2) img {
  animation-duration: 6s;
}

.image-block:nth-child(3) img {
  animation-duration: 7.5s;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

    /* .image-block img:hover{
        transform: scale(1.05);
    } */
/* Exclusive Products Modern Design */
.exclusive-products {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.exclusive-products .section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay button {
  background-color: #1a73e8;
  border: none;
  color: #fff;
  padding: 10px 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.product-overlay button:hover {
  background-color: #155bb5;
}

.product-overlay button:last-child {
  border-radius: 8px;
  padding: 8px 15px;
  font-size: 14px;
}

.product-info {
  padding: 15px;
  text-align: center;
}

.product-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-info .price {
  color: #1a73e8;
  font-weight: 700;
}

/* Furniture Form Section */
.furniture-form {
  position: relative;
  padding: 100px 20px;
  background: url("../image/background.png") center/cover no-repeat;
  display: flex;
  justify-content: center;
}

.furniture-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35); 
}

.form-wrapper {
  position: relative;
  z-index: 2;
  background: #fff;
  max-width: 520px;
  width: 100%;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}


/* Heading */
.form-wrapper h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 10px;
}

.form-wrapper p {
  color: #777;
  margin-bottom: 30px;
}

/* Input Group */
.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
  background: transparent;
}

/* Floating Label */
.input-group label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s ease;
  background: #fff;
  padding: 0 6px;
}

/* Label Animation */
.input-group input:focus + label,
.input-group textarea:focus + label,
.input-group select:focus + label,
.input-group input:valid + label,
.input-group textarea:valid + label,
.input-group select:valid + label {
  top: -8px;
  font-size: 12px;
  color: #555;
}

/* Button */
.form-btn {
  width: 100%;
  padding: 14px;
  background: #555;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.4s ease;
}

.form-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.form-btn:hover {
  background: #333;
}

.form-btn:hover i {
  transform: translateX(5px);
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.readmore-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.readmore-content {
  background: #e7f0ef;
  max-width: 900px;
  width: 90%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 35px;
  border-radius: 20px;
  position: relative;
  animation: zoomFade 0.4s ease;
}

@keyframes zoomFade {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.readmore-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  font-weight: bold;
}

.readmore-close:hover {
  color: #009688;
}

.readmore-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.readmore-text h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
  font-size: 28px;
}

.readmore-text p {
  color: #4a5f5b;
  margin-bottom: 20px;
  line-height: 1.6;
}

.readmore-text ul {
  margin-bottom: 25px;
}

.readmore-text ul li {
  margin-bottom: 8px;
  font-weight: 500;
}

.footer {
  background: linear-gradient(135deg, #2b2b2b, #111);
  color: #ccc;
  padding: 80px 20px 30px;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

/* Brand */
.footer .brand img {
  width: 140px;
  margin-bottom: 20px;
}

.footer .brand p {
  font-size: 14px;
  line-height: 1.6;
}

/* Headings */
.footer h4 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 18px;
  position: relative;
}

.footer h4::after {
  content: '';
  width: 30px;
  height: 2px;
  background: #555;
  position: absolute;
  left: 0;
  bottom: -8px;
}

/* Links */
.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  text-decoration: none;
  color: #aaa;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #fff;
  padding-left: 6px;
}

/* Social */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid #555;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  border-radius: 50%;
  transition: 0.4s;
}

.footer-social a:hover {
  background: #555;
  color: #fff;
  transform: translateY(-4px);
}

/* Contact icons */
.footer-col ul li i {
  margin-right: 8px;
  color: #555;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  font-size: 14px;
  color: #888;
}

/* Responsive */
@media (max-width: 600px) {
  .form-wrapper {
    padding: 35px 25px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }

  .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}



/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
  }

  .hero {
    padding: 60px 40px;
  }

  .hero-text h1 {
    font-size: 46px;
  }

  .hero-image img {
    width: 350px;
  }
  
}

@media (max-width: 900px) {
      .grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 30px;
      }

      .text-block h2 {
        font-size: 1.6rem;
      }
      .footer-container {
    grid-template-columns: 1fr 1fr;
  }
    }


@media (max-width: 768px) {
  

  .menu-toggle {
    display: flex; /* show hamburger */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
  }

  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1f2d2b;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #e7f0ef;
    flex-direction: column;
    align-items: center;
    display: none; 
    padding: 20px 0;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin: 15px 0;
    display: block;
  }

  .nav-btn
   {
    display: none; /* hide on mobile */
  }

  .mobile-shop-btn {
    display: block;
  }

.readmore-content {
    grid-template-columns: 1fr;
    padding: 25px;
  }


  .hero {
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-image img {
    width: 280px;
    margin-top: 40px;
    
  }
  .menu-toggle {
    display: flex;
  }

  .nav-btn {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #e7f0ef;
    flex-direction: column;
    text-align: center;
    display: none;
    padding: 20px 0;
  }

  .nav-links a {
    margin: 15px 0;
    display: block;
  }

  .nav-links.active {
    display: flex;
  }
  .card h2 {
        font-size: 1.5rem;
      }
    .product-image img {
    height: 200px;}
}
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    text-align: center;
  }
.text-block h2 {
        font-size: 1.4rem;
      }

      .text-block p {
        font-size: 0.95rem;
      }
}
.message-container {
    width: 90%;
    max-width: 500px;
    margin: 20px auto;
    z-index: 999;
    position: relative;
}

.message {
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    animation: fadein 0.5s, fadeout 0.5s 4.5s;
    opacity: 1;
}

.message.success {
    background-color: #2ecc71;
    color: #fff;
}

.message.error {
    background-color: #e74c3c;
    color: #fff;
}

@keyframes fadein {
    from { opacity: 0; transform: translateY(-10px);}
    to { opacity: 1; transform: translateY(0);}
}

@keyframes fadeout {
    from { opacity: 1; transform: translateY(0);}
    to { opacity: 0; transform: translateY(-10px);}
}

