@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&family=Inter:wght@300;400;500&display=swap");

:root {
  --primary-color: #364767;
  --primary-hover: #3d4e6f;
  --accent-color: #2d416c;
  --secondary-color: #f0ebe8;
  --text-dark: #1a1a1a;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--text-dark) !important;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-color: #0f1423;
  background-image: url("images/hero-bg-landing.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 60% at 50% 50%,
    rgba(15, 20, 35, 0) 0%,
    rgba(15, 20, 35, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 800px;
  color: #fff;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: 5.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-content h2 {
  font: var(--font-body);
  font-weight: 350;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.88);
  text-shadow:
    0 1px 3px rgba(15, 20, 35, 0.8),
    0 4px 20px rgba(15, 20, 35, 0.5);
  max-width: 560px;
  margin: 0 auto 40px;
  padding: 28px 40px;
  line-height: 1.6;
  background: radial-gradient(
    ellipse at center,
    rgba(15, 20, 35, 0.4) 0%,
    rgba(15, 20, 35, 0.18) 45%,
    rgba(15, 20, 35, 0) 72%
  );
}

.button {
  position: relative;
  overflow: hidden;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  font: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-block;
  cursor: pointer;
}

.button-bg {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 0;
  background-color: var(--primary-color);
}

.button-text {
  position: relative;
  z-index: 1;
  mix-blend-mode: difference;
  color: white;
}

.button-primary:hover .button-bg {
  transform: translateY(-100%);
}

.intro-section {
  padding: 100px 20px;
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-color);
  opacity: 0.7;
  margin-bottom: 12px;
}

.intro-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.25rem;
  margin-bottom: 24px;
  line-height: 1.2;
}

.intro-row p {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
  opacity: 0.85;
}

.intro-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.collage-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
}

.collage-offset {
  margin-top: 48px;
}

.intro-section {
  padding: 100px 20px;
  position: relative;
  transition:
    box-shadow 0.4s ease,
    transform 0.4s ease;
}

.intro-section:hover {
  box-shadow: 0 32px 70px rgba(54, 71, 103, 0.22);
  transform: translateY(-3px);
}

.dye-houses-section {
  padding: 100px 20px;
  background-color: var(--secondary-color);
}

.dye-card {
  background: #ffffff;
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 0;
  transition: transform 0.3s ease;
}

.dye-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  background: rgba(54, 71, 103, 0.08);
  border-radius: 8px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.dye-card:hover {
  transform: translateY(-4px);
}

.dye-card:hover::before {
  opacity: 1;
}

.dye-location {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-color);
  opacity: 0.7;
  margin-bottom: 8px;
}

.dye-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
}

.dye-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  opacity: 0.85;
  font-weight: 300;
}

.dye-note {
  font-style: italic;
}

.dye-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}

.dye-map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 4px;
  margin-bottom: 16px;
  display: block;
}

.gallery-section {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.5s ease;
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 12px;
  background: rgba(54, 71, 103, 0.08);
  border-radius: 8px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
}

.gallery-section:hover {
  transform: translateY(-6px);
}

.gallery-section:hover::before {
  opacity: 1;
}

.gallery-section .row {
  margin-top: 48px;
  align-items: start;
}

.gallery-section iframe {
  border-radius: 4px;
}

.site-footer {
  background-color: #0f1423;
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 20px 40px;
}

.footer-column {
  margin-bottom: 48px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a,
.site-footer p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
}

.footer-links-list a {
  transition: color 0.3s ease;
}

.footer-links-list a:hover {
  color: #ffffff;
}

.site-footer p a {
  color: rgba(255, 255, 255, 0.9);
}

.contact-links {
  display: flex;
  gap: 24px;
  padding-bottom: 24px;
}

.contact-links a {
  position: relative;
  z-index: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.contact-links a::before {
  content: "";
  position: absolute;
  inset: -8px -14px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.contact-links a:hover::before {
  opacity: 1;
}

.footer-credit {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: 300;
  opacity: 0.5;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 75vh;
  }
  .hero-content h1 {
    font-size: 2.75rem;
  }
  .hero-content h2 {
    font-size: 1rem;
  }
  .intro-row .col-md-6:first-child {
    margin-bottom: 32px;
  }
  .collage-offset {
    margin-top: 0;
  }
}
