/* ============================= */
/* 🌎 ROOT VARIABLES + BASE STYLES */
/* ============================= */
:root {
    --white: #FFF;
    --olive: #6E7C4F;
    --olive-dark: #475135;
    --sage: #A7B89E;
    --buttery-yellow: #FFF7DC;
    --text-main: #44422F;
    --text-soft: #7A7D6B;
    --cta-yellow: #FCE794;
    --beige: #fcf8ed;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    font-family: 'Nunito', sans-serif;
    background: var(--beige);
    color: var(--text-main);
    scroll-behavior: smooth;
    box-sizing: border-box;
}

/* Make all elements inherit border-box */
*, *::before, *::after {
    box-sizing: inherit;
}

/* Links */
a {
    color: var(--olive-dark);
    text-decoration: none;
}

/* ============================= */
/* HERO BANNER */
/* ============================= */
.hero-banner {
  background: linear-gradient(135deg, #ac7d88 0%, #ac7d88 50%, #ac7d88 100%);
  padding: clamp(4rem, 10vw, 6rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100vw;         
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  color: white;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.95;
  color: white;
}

/* ============================= */
/* MAIN CONTENT */
/* ============================= */
.site-content {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Comfortaa', sans-serif;
}

/* ============================= */
/* CONTACT GRID */
/* ============================= */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.contact-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  box-shadow: 0 8px 32px rgba(71, 81, 53, 0.08);
  border: 1px solid rgba(167, 184, 158, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(71, 81, 53, 0.12);
  border-color: rgba(172, 125, 136, 0.3);
}

.contact-icon {
  font-size: clamp(2.5rem, 5vw, 3rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ac7d88, #85586F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================= */
/* INSTAGRAM + QR COMBINED CARD */
/* ============================= */
.instagram-qr-card {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.instagram-content,
.qr-content {
  flex: 1 1 220px;
  min-width: 0;
}

.qr-code-container {
  overflow: hidden;
  width: clamp(140px, 20vw, 250px);
  height: clamp(140px, 20vw, 250px);
  display: flex;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border: 1px solid rgba(167, 184, 158, 0.3);
}

/* ============================= */
/* LOCATION SECTION */
/* ============================= */
.location-content {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
  width: 100%;
}

/* Info card */
.location-info {
  background: #FFF;          /* white background */
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 8px 32px rgba(71, 81, 53, 0.08);
  border: 1px solid rgba(167, 184, 158, 0.2);
}

/* Directions button */
.directions-btn {
  margin-top: 1rem;
  display: inline-block;
  background: var(--olive);
  color: #FFF;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.directions-btn:hover {
  background: var(--olive-dark);
}

/* Map */
.map-container {
  background: #FFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(71, 81, 53, 0.08);
  border: 1px solid rgba(167, 184, 158, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* ============================= */
/* DESKTOP LAYOUT */
@media (min-width: 1025px) {
  /* Contact grid desktop */
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 2rem;
  }

  .instagram-qr-card {
    grid-column: 1 / -1;
    grid-row: 2 / 3;
  }

  .contact-card {
    min-height: 200px;
  }

  /* Location: equal width info + map */
  .location-content {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .map-container iframe {
    min-height: 400px;
  }
}

/* ============================= */
/* MOBILE LAYOUT */
@media (max-width: 1024px) {
  .location-content {
    grid-template-columns: 1fr;
  }

  .map-container iframe {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .instagram-qr-card {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ============================= */
/* GLOBAL HORIZONTAL SCROLL FIX */
html, body {
  overflow-x: hidden;
  width: 100%;
}
