/* =========================
   GLOBAL STYLES
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #e9e6e1;
  font-family: "Montserrat", sans-serif;
  color: #66625d;
  overflow-x: hidden;
}

/* =========================
   HEADER
========================= */

.dh-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(245, 243, 238, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(181, 155, 98, 0.18);
}

.dh-header-inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 22px 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */

.dh-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
  letter-spacing: 2px;
  color: #b59b62;
  text-decoration: none;
  font-weight: 500;
}

/* NAV */

.dh-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.dh-nav a {
  text-decoration: none;
  color: #6c6964;
  font-size: 0.92rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.dh-nav a:hover {
  color: #b59b62;
}

/* BUTTON */

.dh-header-btn {
  padding: 13px 28px;
  border: 1px solid #b59b62;
  color: #b59b62 !important;
  transition: all 0.3s ease;
}

.dh-header-btn:hover {
  background: #b59b62;
  color: white !important;
}

/* =========================
   HERO SECTION
========================= */

.dh-faq-hero {
  padding-top: 210px;
  padding-bottom: 130px;

  text-align: center;

  background:
    linear-gradient(rgba(245,243,238,0.92),
    rgba(245,243,238,0.93)),
    url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=2000&auto=format&fit=crop');

  background-size: cover;
  background-position: center;
}

.dh-faq-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.dh-faq-subtitle {
  color: #b59b62;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.dh-faq-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 5.5rem;
  line-height: 1.05;
  color: #6b6965;
  font-weight: 400;
  margin-bottom: 32px;
}

.dh-faq-hero p {
  max-width: 900px;
  margin: 0 auto;

  font-size: 1.28rem;
  line-height: 1.95;
  color: #6f6b67;
}

/* =========================
   FAQ SECTION
========================= */

.dh-faq-section {
  background: #e9e6e1;
  padding: 90px 20px 120px;
}

.dh-faq-container {
  max-width: 1450px;
  margin: 0 auto;
}

/* FAQ ITEM */

.dh-faq-item {
  background: #f7f6f3;
  border: 2px solid #d5cec5;

  margin-bottom: 38px;

  transition: all 0.3s ease;
}

/* QUESTION */

.dh-faq-question {
  width: 100%;
  background: transparent;
  border: none;

  padding: 42px 50px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  text-align: left;

  cursor: pointer;
}

/* QUESTION TEXT */

.dh-faq-question span:first-child {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  line-height: 1.15;
  color: #a7c1bc;
  font-weight: 400;

  max-width: 90%;
}

/* ICON */

.dh-faq-icon {
  font-size: 2rem;
  color: #a7c1bc;

  transition: transform 0.3s ease;

  flex-shrink: 0;
}

/* ANSWER */

.dh-faq-answer {
  max-height: 0;
  overflow: hidden;

  transition: max-height 0.4s ease;
}

.dh-faq-answer p {
  padding: 0 50px 48px;

  font-size: 1.00rem;
  line-height: 1.9;
  color: #66625d;

  max-width: 1500px;
}

/* ACTIVE */

.dh-faq-item.active .dh-faq-answer {
  max-height: 1200px;
}

.dh-faq-item.active .dh-faq-icon {
  transform: rotate(180deg);
}

/* =========================
   FOOTER
========================= */

.dh-footer {
  background: #dcd7cf;
  padding: 80px 20px;
  text-align: center;
}

.dh-footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: #b59b62;
  margin-bottom: 20px;
}

.dh-footer p {
  color: #66625d;
  line-height: 1.8;
  font-size: 1rem;
}

.dh-footer-contact {
  margin-top: 20px;
}

.dh-footer-contact a {
  color: #66625d;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dh-footer-contact a:hover {
  color: #b59b62;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 1200px) {

  .dh-faq-question span:first-child {
    font-size: 2.6rem;
  }
}

@media (max-width: 992px) {

  .dh-header-inner {
    padding: 20px;
  }

  .dh-nav {
    gap: 20px;
  }

  .dh-nav a {
    font-size: 0.78rem;
  }

  .dh-faq-hero h1 {
    font-size: 4rem;
  }

  .dh-faq-question {
    padding: 35px 30px;
  }

  .dh-faq-question span:first-child {
    font-size: 2.1rem;
  }

  .dh-faq-answer p {
    padding: 0 30px 35px;
    font-size: 1.08rem;
    line-height: 1.8;
  }
}

@media (max-width: 768px) {

  .dh-header-inner {
    flex-direction: column;
    gap: 18px;
  }

  .dh-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .dh-faq-hero {
    padding-top: 230px;
    padding-bottom: 90px;
  }

  .dh-faq-hero h1 {
    font-size: 2.9rem;
  }

  .dh-faq-hero p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .dh-faq-question span:first-child {
    font-size: 1.65rem;
  }

  .dh-faq-icon {
    font-size: 1.4rem;
    margin-left: 18px;
  }

  .dh-faq-answer p {
    font-size: 1rem;
  }
}

/* =========================
   LARGE DESKTOPS
========================= */

@media (min-width: 1600px) {

  .dh-faq-container,
  .dh-header-inner {
    max-width: 1600px;
  }

  .dh-faq-question span:first-child {
    font-size: 3.6rem;
  }

  .dh-faq-answer p {
    font-size: 1.45rem;
    line-height: 2;
  }
}

/* =========================
   LAPTOPS
========================= */

@media (max-width: 1400px) {

  .dh-faq-question span:first-child {
    font-size: 2.8rem;
  }

  .dh-faq-answer p {
    font-size: 1.2rem;
  }
}

/* =========================
   TABLETS LANDSCAPE
========================= */

@media (max-width: 1200px) {

  .dh-header-inner {
    padding: 20px 30px;
  }

  .dh-nav {
    gap: 24px;
  }

  .dh-faq-hero h1 {
    font-size: 4.5rem;
  }

  .dh-faq-question {
    padding: 38px 35px;
  }

  .dh-faq-question span:first-child {
    font-size: 2.4rem;
  }

  .dh-faq-answer p {
    padding: 0 35px 38px;
    font-size: 1.1rem;
    line-height: 1.9;
  }
}

/* =========================
   TABLETS
========================= */

@media (max-width: 992px) {

  .dh-header-inner {
    padding: 18px 24px;
  }

  .dh-logo {
    font-size: 2rem;
  }

  .dh-nav {
    gap: 18px;
  }

  .dh-nav a {
    font-size: 0.76rem;
    letter-spacing: 0.8px;
  }

  .dh-header-btn {
    padding: 11px 20px;
  }

  .dh-faq-hero {
    padding-top: 180px;
    padding-bottom: 100px;
  }

  .dh-faq-hero h1 {
    font-size: 3.8rem;
  }

  .dh-faq-hero p {
    font-size: 1.08rem;
    line-height: 1.8;
  }

  .dh-faq-section {
    padding: 70px 18px 100px;
  }

  .dh-faq-question {
    padding: 32px 28px;
  }

  .dh-faq-question span:first-child {
    font-size: 2rem;
    line-height: 1.2;
  }

  .dh-faq-answer p {
    padding: 0 28px 32px;
    font-size: 1rem;
    line-height: 1.8;
  }

  .dh-faq-icon {
    font-size: 1.5rem;
  }
}

/* =========================
   MOBILE DEVICES
========================= */

@media (max-width: 768px) {

  .dh-header {
    position: relative;
  }

  .dh-header-inner {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 24px 18px;
  }

  .dh-logo {
    font-size: 2rem;
    text-align: center;
  }

  .dh-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .dh-nav a {
    font-size: 0.72rem;
  }

  .dh-header-btn {
    padding: 10px 16px;
  }

  .dh-faq-hero {
    padding-top: 90px;
    padding-bottom: 70px;
  }

  .dh-faq-hero h1 {
    font-size: 2.8rem;
    line-height: 1.1;
  }

  .dh-faq-hero p {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .dh-faq-section {
    padding: 50px 14px 80px;
  }

  .dh-faq-item {
    margin-bottom: 24px;
  }

  .dh-faq-question {
    padding: 24px 20px;
    align-items: flex-start;
  }

  .dh-faq-question span:first-child {
    font-size: 1.45rem;
    line-height: 1.3;
    max-width: 85%;
  }

  .dh-faq-icon {
    font-size: 1.15rem;
    margin-left: 12px;
    margin-top: 6px;
  }

  .dh-faq-answer p {
    padding: 0 20px 24px;
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .dh-footer {
    padding: 60px 20px;
  }

  .dh-footer-logo {
    font-size: 2.3rem;
  }
}

/* =========================
   SMALL MOBILE DEVICES
========================= */

@media (max-width: 480px) {

  .dh-logo {
    font-size: 1.7rem;
  }

  .dh-nav {
    gap: 10px;
  }

  .dh-nav a {
    font-size: 0.68rem;
  }

  .dh-faq-hero h1 {
    font-size: 2.2rem;
  }

  .dh-faq-subtitle {
    font-size: 0.72rem;
    letter-spacing: 3px;
  }

  .dh-faq-question {
    padding: 20px 16px;
  }

  .dh-faq-question span:first-child {
    font-size: 1.2rem;
  }

  .dh-faq-answer p {
    padding: 0 16px 20px;
    font-size: 0.9rem;
  }

  .dh-footer-logo {
    font-size: 2rem;
  }

  .dh-footer p {
    font-size: 0.92rem;
  }
}