/* Morning Brew - Section Styles */

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(45, 31, 26, 0.4);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: var(--spacing-md);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: var(--spacing-md);
  color: var(--coffee-cream);
  font-weight: 400;
}

/* Menu Highlights Section */
.menu-highlights {
  background-color: var(--latte-foam);
}

.section-title {
  text-align: center;
  color: var(--espresso);
  margin-bottom: var(--spacing-lg);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

/* Location Section */
.location {
  background-color: var(--espresso);
  color: var(--latte-foam);
  padding: 0;
}

.location-container {
  display: grid;
  grid-template-columns: 60% 40%;
  min-height: 500px;
}

.location-map {
  position: relative;
  overflow: hidden;
}

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

.location-info {
  background-color: var(--coffee-cream);
  color: var(--espresso);
  padding: var(--spacing-xl) var(--spacing-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info h2 {
  color: var(--espresso);
}

.location-details {
  margin-top: var(--spacing-md);
}

.location-item {
  margin-bottom: var(--spacing-md);
}

.location-item h3 {
  color: var(--copper-accent);
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xs);
}

.location-item p {
  color: var(--roasted-bean);
  margin-bottom: 0.25rem;
}

/* Loyalty Section */
.loyalty {
  background: linear-gradient(135deg, var(--sage-green), var(--copper-accent));
  color: white;
}

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

.loyalty h2 {
  text-align: center;
  color: white;
  margin-bottom: var(--spacing-sm);
}

.loyalty-description {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
  color: var(--latte-foam);
}

.loyalty-form {
  background-color: white;
  padding: var(--spacing-lg);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.loyalty-form .form-label {
  color: var(--espresso);
}

.loyalty-form .btn-primary {
  width: 100%;
  margin-top: var(--spacing-sm);
}
