/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100dvh;
  width:  100dvw;
}

:root {
  touch-action: pan-x pan-y;
  height: 100% 
}

body {
  font-family: "josefin-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #1a1a1a;
  background: #f6f3ee;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: scroll;
}

.section a {
    color: #4A6FA5;
}

.dark a {
    color: #5C84B1;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background: #fffaf5;
  border-bottom: 1px solid #dcd4c9;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  text-decoration: none;
  font-family: "armstrong", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

.site-nav a {
  color: #1a1a1a;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: #b35b2c;
}

/* Hero */
.hero {
  background: url('/img/hero.jpg') center/cover no-repeat;
  height: 75vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.65);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  color: #fff;
  text-align: center;
  z-index: 1;
}

.hero-text h2 {
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  font-family: "armstrong", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.hero-text p {
  font-size: 1.1rem;
  color: #f6f3ee;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section.dark {
  background: #1a1a1a;
  color: #f6f3ee;
}

.section h3 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  text-align: center;
  color: inherit;
}

.section h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  text-align: center;
  color: inherit;
}

.section p {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.ig-embed {
  margin: 20px auto;
  display: flex;
  justify-content: center;
}

.ig-embed iframe {
  margin: 0 auto;
}

.hours {
    text-align: center;
    margin: .75rem auto;
}

.image-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.image-grid img {
  width: 100%;
  height: auto;
  border: 1px solid #dcd4c9;
  border-radius: 4px;
}


/* Footer */
.site-footer {
  background: #fffaf5;
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid #dcd4c9;
  color: #777;
  font-size: 0.9rem;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .site-nav {
    position: absolute;
    top: 60px;
    right: 0;
    background: #fffaf5;
    width: 200px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: none;
  }
  .site-nav.open {
    transform: translateX(0);
    display: block;
  }
  .site-nav ul {
    flex-direction: column;
    padding: 10px 0;
  }
  .site-nav li {
    margin: 10px 0;
    text-align: right;
    margin-right: 20px;
  }
  .nav-toggle {
    display: block;
  }
}
