/* General Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #e8e8e8;
  line-height: 1.6;
  background-color: #1a1a1a;
}

/* Container */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.container.intro {
  /* border: 3px solid pink; */
  display: flex;
  justify-content: space-between;
  padding: 0 5vw;
  gap: 5%;
}
#Special-grid {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
/* Hero Header */
.site-header {
  position: relative;
  color: #0f0c0c;
}
a {
  color: #e8e8e8;
}

.hero-image {
  background: url("/src/riptideHeader.png") center/contain no-repeat;
  width: 100vw;
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-text {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 6px;
}

.curbside {
  width: 25vw;
  aspect-ratio: 16/9;
  background: url("/src/riptidestreet.webp") center/cover no-repeat;
}
.come {
  font-size: 48px;
  font-weight: 700;
}
.hello {
  width: 100%;
  font-size: 26px;
  text-align: center;
}
.site-title {
  font-size: 3em;
  margin: 0;
}

.site-tagline {
  font-size: 1.2em;
  margin-top: 10px;
}

/* Navigation */
.main-nav {
  background: #004466;
  text-align: center;
  padding: 10px 0;
}

.main-nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

.main-nav a:hover {
  text-decoration: underline;
}

/* About Section */
.about-section {
  /* padding: 50px 0; */
  /* text-align: center; */
  display: flex;
  flex-direction: column;
  gap: 5vh;
  padding-bottom: 5vh;
}

.about-image {
  margin-top: 20px;
  max-width: 100%;
  border-radius: 6px;
}

/* Menu Section */
.menu-section {
  border-top: 5px solid #f9f9f9;
  padding: 50px 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  /* margin-top: 20px; */
  padding: 16px;
  border: 5px solid #f9f9f9;
  background-color: #3a3c4b;
}

.menu-item {
  background: #fff;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-align: center;
}

.menu-image {
  max-width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}

.menu-item h3 {
  color: #004466;
  margin: 10px 0 5px;
}

/* Footer */
.site-footer {
  /* background: #004466; */
  color: #fff;
  text-align: center;
  padding: 20px;
}

.site-footer > .container {
  display: flex;
  gap: 5%;
}

.site-footer > .container > .ourlocation {
  text-align: start;
  color: #ffd40d;
}
