/* Divine Clothing - Clean Elegant Boutique Stylesheet */

/* 
  Logo file expected:
  images/divine-clothing-logo-white.png

  Main hero image expected:
  images/divine-clothing-main-image.jpg
*/

:root {
  --cream: #fbf7f1;
  --soft-blush: #f1e5dc;
  --warm-beige: #d8c1aa;
  --gold: #b58a5b;
  --charcoal: #2b2826;
  --text: #4a4541;
  --muted: #81786f;
  --white: #ffffff;
  --border: #eadfd6;
  --shadow: 0 18px 45px rgba(43, 40, 38, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */

.site-header {
  background: rgba(251, 247, 241, 0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  max-width: 190px;
  height: auto;
  border-radius: 2px;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--charcoal);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

/* Hero */

.hero {
  min-height: 700px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(43, 40, 38, 0.72), rgba(43, 40, 38, 0.25)),
    url("../images/divine-clothing-main-image.png") center / cover no-repeat;
}

.hero-content {
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12px;
  font-weight: 700;
}

.hero .eyebrow {
  color: #ead1b8;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  max-width: 780px;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: #a77c50;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: var(--white);
}

/* Intro */

.intro-section {
  padding: 88px 0 66px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.intro-grid h2,
.boutique-copy h2,
.social-section h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
}

.intro-grid p,
.boutique-copy p,
.card p,
.site-footer p {
  line-height: 1.8;
  font-size: 16px;
}

.intro-grid p {
  margin-top: 0;
}

.intro-grid p + p {
  margin-top: 18px;
}

/* Feature Cards */

.feature-cards {
  padding: 20px 0 90px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  padding: 34px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card span {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
}

.card h3 {
  font-size: 28px;
  margin-top: 18px;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

/* Boutique Section */

.boutique-section {
  padding: 90px 0;
  background: var(--soft-blush);
}

.boutique-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.boutique-image img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.boutique-copy {
  background: rgba(255, 255, 255, 0.62);
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.tick-list {
  list-style: none;
  margin: 28px 0 34px;
  padding: 0;
}

.tick-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(181, 138, 91, 0.25);
}

.tick-list li::before {
  content: "✦";
  color: var(--gold);
  margin-right: 10px;
}

/* Social */

.social-section {
  padding: 82px 0;
  text-align: center;
  background: var(--white);
}

.social-section h2 {
  max-width: 780px;
  margin: 0 auto;
}

.social-links {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-links a {
  border: 1px solid var(--border);
  background: var(--cream);
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
  font-weight: 700;
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Footer */

.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.76);
  padding-top: 54px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
  margin-bottom: 14px;
}

.site-footer h3 {
  font-size: 30px;
}

.site-footer h4 {
  font-size: 18px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--warm-beige);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* Responsive */

@media (max-width: 860px) {
  .nav-wrap {
    min-height: auto;
    flex-direction: column;
    padding: 18px 0;
  }

  .site-nav {
    justify-content: center;
    gap: 16px;
  }

  .hero {
    min-height: 620px;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .intro-grid,
  .boutique-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .boutique-copy {
    padding: 34px 24px;
  }

  .boutique-image img {
    min-height: 360px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-logo {
    max-width: 165px;
    padding: 8px 12px;
  }

  .site-nav a {
    font-size: 11px;
  }

  .hero {
    min-height: 560px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-text {
    font-size: 17px;
  }

  .btn {
    width: 100%;
  }

  .intro-section,
  .boutique-section,
  .social-section {
    padding: 60px 0;
  }

  .card {
    padding: 28px;
  }
}
/* Location Page Map */

.map-card {
  width: 100%;
  min-height: 520px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}

/* Better layout for location page */

.boutique-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 58px;
  align-items: stretch;
}