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

:root {
  --sage: #8b9d83;
  --dark-sage: #6b7d63;
  --olive: #9ca986;
  --cream: #f5f3ed;
  --warm-white: #fefcf7;
  --charcoal: #3a3a3a;
  --terracotta: #c17757;
  --border-radius: 12px;
  --amber: #d4a04a;
  --coral: #c96b5a;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Age Verification Modal */
.age-verify {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.age-verify-content {
  background: var(--warm-white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.age-verify h2 {
  color: var(--dark-sage);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.age-verify p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: var(--charcoal);
}

.age-verify .buttons {
  display: flex;
  gap: 15px;
  flex-direction: column;
}

/* Main Container */
.container {
  max-width: 680px;
  margin: 0 auto;
  background: var(--warm-white);
  min-height: 100vh;
}

@media (max-width: 680px) {
  .container {
    margin: 8px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}

/* Logo Section */
.logo-section {
  background: white;
 /* margin: 20px 20px 30px;*/
  /*padding: 30px 25px;*/
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(139, 157, 131, 0.2);
  text-align: center;
}

@media (max-width: 680px) {
  .logo-section {
    margin-top: 8px;
  }
}

.brand-logo {
  max-width: 100%;
  height: auto;

}

/* Info Card */
.info-card {
  background: white;
  margin: 0 20px 30px;
  padding: 30px 25px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(139, 157, 131, 0.2);
}

.tagline {
  color: var(--sage);
  font-size: 2.0rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-align: center;
}

.hours {
  text-align: center;
  margin-bottom: 25px;
  padding: 15px;
  background: var(--cream);
  border-radius: 8px;
}

.status {
  display: block;
  font-size: 2.0rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.status-open {
  color: var(--dark-sage);
}
.status-closed {
  color: var(--coral);
}
.status-closing-soon {
  color: var(--amber);
}

.hours-details {
  color: var(--charcoal);
  font-size: 1.2rem;
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

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

.btn-primary:hover {
  background: var(--dark-sage);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 125, 99, 0.3);
}

.btn-secondary {
  background: white;
  color: var(--dark-sage);
  border: 2px solid var(--sage);
}

.btn-secondary:hover {
  background: var(--cream);
  border-color: var(--dark-sage);
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 480px) {
  .cta-group {
    flex-direction: row;
  }

  .btn {
    width: auto;
    flex: 1;
  }
}

/* Hero Section */
.hero-container {
  margin: 0 20px 30px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.hero-media {
  display: block;
  width: 100%;
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

/* Map Section */
.map-container {
  margin: 0 20px 30px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  height: 350px;
}

.map {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background: var(--dark-sage);
  color: var(--cream);
  padding: 40px 20px 30px;
  margin-top: 40px;
}

@media (max-width: 680px) {
  footer {
    border-radius: 0 0 var(--border-radius) var(--border-radius);
  }
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  gap: 30px;
  margin-bottom: 30px;
}

@media (min-width: 480px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-section h3 {
  color: var(--olive);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-section p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-section a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section a:hover {
  color: var(--olive);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.social-link i {
  font-size: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(156, 169, 134, 0.3);
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}
