/* SunGuard Consolidated Styles */
@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins/Poppins-Regular.ttf");
    font-weight: 400;
    font-style: normal;
  }

  @font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins/Poppins-Bold.ttf") ;
    font-weight: 700;
    font-style: normal;
  }
   @font-face {
    font-family: "Playfair Display";
    src: url("fonts/Playfair_Display/PlayfairDisplay-Bold.ttf") ;
    font-weight: 700;
    font-style: normal;
  }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fdf6e9;
  color: #2c2c2c;
  overflow-x: hidden;
}
img{
    display: block;
    max-width: 100%;
    object-fit: cover;
}
a{
    text-decoration: none;
    color: inherit;
}
/* Header and Navigation */
header {
  background: linear-gradient(135deg, #d4a017 0%, #8b5a2b 100%);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

nav {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #f4d35e;
}

.burger {
  display: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

/* General Section Styles */
section {
  padding: 80px 0;
}

.section-top{
    padding-top: 130px;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

h2, h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #8b5a2b;
  margin-bottom: 20px;
  text-align: center;
}

h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #2c2c2c;
  margin: 20px 0 15px;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

ul li {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.btn {
  background: #d4a017;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Hero Section (index.html) */
.hero {
  height: 100vh;
  max-height: 1200px;
  background: url('image/banner.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
    color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Intro Section (design.html, catalog.html, contact.html) */
.intro {
  text-align: center;
  background: url('image/store.jpeg') center/cover no-repeat;
  padding-top: 130px;
  position: relative;
  color: #fff;
}
.intro-contact{
    background: url('image/dining-room.jpeg') center/cover no-repeat;
}

.intro::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  background: rgba(0, 0, 0, 0.5);

}

.intro-content {
    position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

/* About, Custom, Feature, Team, Showcase Sections */
.about, .custom-grid, .feature, .team, .showcase {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about img, .feature img, .team img, .showcase img {
  width: 50%;
  border-radius: 15px;
}

.about-text, .feature-text, .team-text, .showcase-text {
  width: 50%;
}

/* Product Cards (index.html, catalog.html) */
.products-grid, .curtains-grid, .blinds-grid, .custom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card h3 {
  font-size: 1.5rem;
  margin: 15px;
}

.product-card p {
  margin: 0 15px 10px;
  font-size: 1rem;
}

.product-card .price {
  font-size: 1.2rem;
  color: #d4a017;
  margin: 0 15px 15px;
  font-weight: bold;
}

.product-card .btn {
  margin: 0 15px 15px;
  text-align: center;
}

/* Slider Section (index.html) */
.slider{
    padding: 0 10px;
}
.slider .container {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.slide-text {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  background-color: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 10px;
}
.slide-text h2{
    color: #fff;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
}

.dot.active {
  opacity: 1;
}

/* Inspiration Sections (index.html, design.html, catalog.html) */
.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.inspiration-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
}

.inspiration-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.inspiration-card i {
  font-size: 2rem;
  color: #d4a017;
  margin-bottom: 15px;
}

.inspiration-item {
  text-align: center;
}

.inspiration-item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Process Section (design.html) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

.process-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
}

.process-card i {
  font-size: 2rem;
  color: #d4a017;
  margin-bottom: 15px;
}

/* Gallery and Material Sections (index.html, design.html, catalog.html) */
.gallery-grid, .material-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item img, .material-item img {
  width: 100%;
  border-radius: 10px;
}

/* Tips Section (index.html, catalog.html) */
.tips-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.tips-item{
    display: flex;
    gap: 40px;
}
.tips-grid img {
  width: 100%;
  border-radius: 10px;
}

.style-tips {
  background: url('image/room.jpeg') center/cover fixed;
  padding: 80px 0;
  color: #fff;
  text-align: center;
  position: relative;
}

.style-tips::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.style-tips-content {
    position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.style-tips ul {
  list-style: none;
  text-align: left;
  max-width: 600px;
  margin: 20px auto;
}

.style-tips li {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.style-tips li i {
  color: #f4d35e;
  margin-right: 10px;
}

/* Accordion and FAQ (index.html, design.html, contact.html) */
.accordion, .faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item, .faq-item {
  margin-bottom: 10px;
}

.accordion-header, .faq-header {
  background: #d4a017;
  padding: 15px;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.accordion-content, .faq-content {
  display: none;
  padding: 15px;
  background: #fff;
  border-radius: 0 0 5px 5px;
}

.accordion-item.active .accordion-content, .faq-item.active .faq-content {
  display: block;
}

/* Contact Form (index.html, contact.html) */
.contact-form-section {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #d4a017;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #8b5a2b;
  outline: none;
}

.contact-form label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-form button {
  background: #d4a017;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
}

.contact-form button:hover {
  background: #8b5a2b;
}
.contact-form label input{
    width: auto;
    margin: 0;
}
/* Locations (contact.html) */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

.location-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
}

.location-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.location-card i {
  font-size: 1.5rem;
  color: #d4a017;
  margin-bottom: 10px;
}

/* Support (contact.html) */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

.support-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
}

.support-card i {
  font-size: 2rem;
  color: #d4a017;
  margin-bottom: 15px;
}

/* Testimonials (index.html) */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* Parallax Sections (design.html, contact.html) */
.parallax {
  background: url('image/bedroom.jpeg') center/cover fixed;
  padding: 80px 0;
  color: #fff;
  text-align: center;
  position: relative;
}

.parallax::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.parallax-content, .community-content {
    position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.parallax-content h2, .intro-content h1, .style-tips-content  h2, .philosophy h1{
    color: #fff;
}
.community-content a {
  color: #f4d35e;
  text-decoration: none;
  margin: 0 10px;
  font-size: 1.5rem;
}

.community-content img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  margin: 20px auto 0 auto;
}

/* Collection Showcase (catalog.html) */
.collection-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

.showcase-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

/* Philosophy Section (design.html) */
.philosophy {
  text-align: center;
  background: url('image/order1.jpeg') center/cover no-repeat;
  position: relative;
}

.philosophy::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
}

.philosophy-text {
    position: relative;
  z-index: 1;
  color: #fff;
}

/* Thank You Page (thanks.html) */
#thank-you .container {
    text-align: center;
  max-width: 800px;
  padding: 40px 20px;
}

/* Footer */
footer {
  background: #2c2c2c;
  color: #fff;
  padding: 50px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-grid h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
  color: #fff;
}

.footer-grid a {
  color: #f4d35e;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container{
    padding: 0 10px;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #2c2c2c;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: block;
    position: relative;
    z-index: 999;
  }

  .no-scroll {
    overflow: hidden;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .about, .custom-grid, .feature, .team, .showcase, .philosophy {
    flex-direction: column;
  }

  .about img, .about-text, .custom-grid img, .custom-text, .feature img, .feature-text, .team img, .team-text, .showcase img, .showcase-text, .philosophy-text {
    width: 100%;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .contact-form-section {
    padding: 20px;
  }

  #thank-you .container {
    padding: 20px 10px;
  }

  p {
    font-size: 1rem;
  }
  .tips-item{
    flex-direction: column;
    gap: 30px;
  }
  .slide-text{
    transform: none;
    width: 80%;
    left: 10%;
    top: 20%;
  }
  .slide img{
    height: 400px;
  }
}