/* General Page Styling */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f4f1ec;
  color: #333;
}

/* Header */

header {
  background-color: #5c3d2e;
  color: white;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 20px 40px;
}

/* Logo images */

.logo {
  width: 100px;
  height: auto;
}

/* Center text */

.header-text {
  text-align: center;
  flex-grow: 1;
}


/* Navigation */

nav {
  background-color: #8b5e3c;
  padding: 12px;
  text-align: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 15px;
  font-weight: bold;
}

nav a:hover {
  color: #ffd9b3;
}

/* Main Content */

main {
  padding: 20px;
}

/* Hero Image */

.hero img {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: auto;
  border-radius: 10px;
}

/* Sections */

section {
  margin-bottom: 40px;
}

/* Menu Lists */

.menu-list {
  list-style-type: square;
  padding-left: 20px;
}

.menu-list li {
  margin-bottom: 10px;
  font-size: 18px;
}

/* Two Column Menu Layout */

.menu-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 20px;
}

.menu-column {
  flex: 1;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.menu-column h3 {
  text-align: center;
  color: #5c3d2e;
}

section p {
  text-align: center;
}

/* Tables */

table {
  width: 60%;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

table, th, td {
  border: 1px solid #333;
}

th, td {
  padding: 10px;
  text-align: center;
}

/* Video and Map */
iframe {
  display: block;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  margin: 20px auto 0;
}

/* Footer */

footer {
  background-color: #5c3d2e;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
}

section h2,h3 {
  text-align: center;
  color:#5c3d2e;
  margin-bottom:20px;
}

/* Breakfast Menu Image */

.menu-image {
  text-align: center;
}

.menu-image img {
  width: 100%;
  max-width: 853px;   /* Original image width */
  height: auto;       /* Keeps proportions */
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}


/* Mobile Responsive Design */

@media (max-width: 768px) {

  /* Stack menu columns vertically */
  .menu-columns {
    flex-direction: column;
  }

  /* Header layout for phones */
  header {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  /* Smaller logos on mobile */
  .logo {
    width: 70px;
    margin-bottom: 10px;
  }

  /* Navigation links stack nicely */
  nav a {
    display: block;
    margin: 10px 0;
  }

  /* Slightly smaller menu text */
  .menu-list li {
    font-size: 16px;
  }
}
