/* ========================================
   Traverse Bay Restaurants - Styles
======================================== */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #faf7f4;
  color: #333;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ========================================
   HEADER
======================================== */
header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0;
}

header h1 {
  font-size: 24px;
  color: #2c2c2c;
}

nav {
  margin-top: 10px;
}

nav a {
  margin-right: 15px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
}

nav a:hover {
  color: #000;
}

/* ========================================
   HERO
======================================== */


.hero {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url('../images/hero.jpg') center/cover no-repeat;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-block;
  padding: 12px 22px;
  background: #c49b63;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin: 5px;
  font-size: 14px;
}

.btn:hover {
  background: #a67c52;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #fff;
}

/* ========================================
   SECTIONS
======================================== */
section {
  padding: 50px 0;
}

section h2 {
  font-size: 26px;
  margin-bottom: 25px;
  text-align: center;
}

/* ========================================
   GRID
======================================== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* ========================================
   CATEGORY + LOCATION LINKS
======================================== */
.categories a,
.locations a {
  display: block;
  padding: 20px;
  background: #ffffff;
  text-align: center;
  text-decoration: none;
  color: #333;
  border-radius: 6px;
  border: 1px solid #eee;
  transition: 0.2s ease;
}

.categories a:hover,
.locations a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* ========================================
   CARDS
======================================== */
.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #eee;
  text-align: center;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  margin-bottom: 15px;
}

.card a {
  text-decoration: none;
  color: #c49b63;
  font-weight: bold;
}

/* ========================================
   RESTAURANT LIST (IMPORTANT FIX)
======================================== */
.restaurant-list {
  max-width: 800px;
  margin: auto;
}

.restaurant-item {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.restaurant-item:last-child {
  border-bottom: none;
}

.restaurant-item h3 {
  color: #c49b63;
  margin-bottom: 5px;
}

.restaurant-item p {
  font-size: 15px;
}

/* ========================================
   Brunch page layout
======================================== */



.main-content{
max-width:1100px;
margin:40px auto;
padding:0 20px;
}

.card-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:20px;
}

.card{
background:white;
padding:20px;
border-radius:6px;
box-shadow:0 2px 6px rgba(0,0,0,.1);
}

/* ========================================
   About page layout
======================================== */

/* About Page */

.about-content{
max-width:900px;
margin:50px auto;
padding:0 20px;
line-height:1.7;
}

.about-content h2{
margin-top:30px;
}

.about-content ul{
margin:15px 0 20px 20px;
}





/* ========================================
   NETWORK LINKS
======================================== */
.network ul {
  list-style: none;
  text-align: center;
}

.network li {
  margin: 10px 0;
}

.network a {
  text-decoration: none;
  color: #c49b63;
  font-weight: bold;
}

/* ========================================
   CONTENT
======================================== */
.content p {
  max-width: 800px;
  margin: 10px auto;
  text-align: center;
}

/* ========================================
   ADS
======================================== */
.ad {
  background: #f1f1f1;
  padding: 30px 0;
  text-align: center;
}

/* ========================================
   FOOTER
======================================== */
footer {
  background: #2c2c2c;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 768px) {

  .hero h2 {
    font-size: 28px;
  }

  nav {
    text-align: center;
  }

  nav a {
    display: inline-block;
    margin: 5px 10px;
  }

}
