/* =======================
   Hero Slider
======================= */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10%;
  color: #fff;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.slide-content {
  position: relative;
  max-width: 550px;
  z-index: 2;
}

.slide-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.slide-content h2 span {
  color: #f57b20;
}

.slide-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.slide-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  padding: 10px 20px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}

.btn:hover {
  background: #f57b20;
  border-color: #f57b20;
  color: #222;
}

.play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: #222;
  transition: 0.3s;
}

.play-btn:hover {
  transform: scale(1.1);
}

/* Thumbnails */
.thumbnails {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.thumbnails img {
  width: 80px;
  height: 50px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: 4px;
  opacity: 0.7;
  transition: 0.3s;
}

.thumbnails img.active,
.thumbnails img:hover {
  border-color: #f57b20;
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .slide-content h2 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .play-btn {
    width: 45px;
    height: 45px;
  }

  .thumbnails img {
    width: 60px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .slide {
    padding: 0 5%;
    justify-content: center;
    text-align: center;
  }

  .slide-content {
    max-width: 90%;
  }

  .slide-buttons {
    justify-content: center;
  }
}

/* 4th section */

/* Section base */
.faq-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: "Poppins", sans-serif;
  color: #111;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-label {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: 10px;
}

.faq-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.faq-header p {
  font-size: 16px;
  color: #777;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* FAQ Container */
.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 40px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

/* Question Button */
.faq-question {
  background: none;
  border: none;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 15px 0;
  color: #111;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #f5c518; /* premium gold hover */
}

.faq-icon {
  font-size: 22px;
  transition: transform 0.3s;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.faq-answer p {
  margin: 0;
  padding: 10px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg); /* turns + into × */
}
/* section 5 */
.blog-section {
  padding: 80px 10%;
  font-family: 'Poppins', sans-serif;
  background: #fff;
}

.section-label {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 500;
  color: #000000;
  display: block;
  margin-bottom: 10px;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.blog-header h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
}

.header-right {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.btn-dark {
  background: #000;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-dark:hover {
  background: #333;
}

.btn-outline {
  border: 1px solid #000;
  color: #000;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #000;
  color: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.blog-card img {
  width: 100%;
  display: block;
  border-bottom: 1px solid #eee;
}

.blog-meta {
  font-size: 13px;
  color: #666;
  margin: 15px 20px 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 10px 20px;
  line-height: 1.4;
}

.read-more {
  display: inline-block;
  margin: 15px 20px 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #000;
  transition: color 0.3s;
}

.read-more:hover {
  color: #666;
}

/*section 6*/
/* Section 6 (Store Section) */
.store-section {
  padding: 60px 5%;
  text-align: center;
  background-color: black;
  font-family: 'Poppins', sans-serif;
}

.store-header {
  max-width: 700px;
  margin: 0 auto 40px;
}

.store-header h2 {
    color: rgb(202, 200, 200);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.store-header p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
}

/* Carousel Wrapper */
.store-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}

.store-carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}

/* Product Cards */
.product-card {
  flex: 0 0 300px; /* fixed width for smooth scroll */
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.product-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 12px;
}

.product-card a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #c17c2f;
  text-decoration: none;
  transition: color 0.3s;
}

.product-card a:hover {
  color: #a8641d;
}

/* Footer + Navigation */
.store-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.nav-btn {
  background: #f4f4f4;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: background 0.3s, transform 0.2s;
}

.nav-btn:hover {
  background: #e2e2e2;
  transform: scale(1.1);
}

.btn-outline {
  padding: 10px 20px;
  border: 2px solid #9e6861;
  border-radius: 30px;
  color: #c17c2f;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
  background: #000000;
  color: #fff;
}

/* section 6 */
/* Section 6 */
.product-card {
  background: #111111;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #dbd6d6;
}

.product-card p {
  font-size: 15px;
  color: #d4bfbf;
  line-height: 1.6;
}

.learn-more {
  display: inline-block;
  margin-top: 12px;
  color: #b87333;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.learn-more:hover {
  color: #8a5525;
}

/* Expandable hidden paragraph */
.extra-info {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  font-size: 14px;
  margin-top: 10px;
  color: #444;
}

.extra-info.show {
  max-height: 300px; /* adjust as needed */
  opacity: 1;
}

/* 3rd section */
/* Section */
.projects-media {
  background: #fff;
  padding: 0px 0;
}

/* Header */
.media-header {
  text-align: center;
  margin-bottom: 50px;
}
.media-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}
.media-header p {
  font-size: 16px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid */
.media-grid {
  display: grid;
  grid-template-columns: 2fr 1fr; /* left wider */
  gap: 20px;
  grid-auto-rows: 250px;
}

.media-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.media-item img,
.media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  transition: transform .4s ease;
}

.media-item:hover img,
.media-item:hover video {
  transform: scale(1.05);
}

/* Overlay */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: #fff;
}
.overlay h3 {
  margin: 0;
  font-size: 18px;
}

/* Special tall item */
.media-item.tall {
  grid-row: span 2; /* makes it taller */
}

/* Responsive */
@media (max-width: 900px) {
  .media-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .media-item.tall {
    grid-row: auto;
  }
}