/* Custom styles for SurfersBurgers.com */

/* reset some defaults */
*, *:before, *:after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.site-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  flex: 0 0 150px;
}

.logo img {
  max-width: 100%;
  height: auto;
  display: block;
}

.intro {
  flex: 1 1 auto;
}

.site-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #666;
}

/* mobile adjustments */
@media (max-width: 600px) {
  .site-header {
    flex-direction: column;
    text-align: center;
  }

  .intro {
    padding-top: 1rem;
  }
}
