:root {
  --cfa-red: #E51636;
  --dark-gray: #2A2A2A;
  --light-gray: #F7F7F7;
  --white: #FFFFFF;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  background: var(--light-gray);
  color: var(--dark-gray);
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

/* Header */
.header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 64px;
}

.header h1 {
  color: var(--cfa-red);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.header p {
  font-size: 18px;
  color: #555;
}

/* Location Cards */
.locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.location-card {
  position: relative;
  height: 360px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.location-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.9);
}

.east::before {
  background-image: url("https://static.cfacdn.com/photos/restaurants/00862/large.jpg");
}

.west::before {
  background-image: url("https://static.cfacdn.com/photos/restaurants/01622/large.jpg");
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.15),
    rgba(0,0,0,0)
  );
}

.card-content {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
}

.card-content .brand {
  font-size: 14px;
  letter-spacing: 0.5px;
  opacity: 0.9;
  margin-bottom: 4px;
}

.card-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.card-content span {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}

/* Footer */
footer {
  margin-top: 80px;
  text-align: center;
  font-size: 14px;
  color: #888;
}

/* Mobile */
@media (max-width: 768px) {
  .locations {
    grid-template-columns: 1fr;
  }

  .location-card {
    height: 300px;
  }

  .header h1 {
    font-size: 34px;
  }
}
