/* General Body */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f1e1bc; /* warm cream */
  color: #1C1C1C; /* dark charcoal */
  line-height: 1.6;
  margin: 0;
  padding: 20px;
  /*background-image: linear-gradient(to top, rgba(255, 248, 231, 0.95), rgba(255, 248, 231, 0.7)), url('ethio.jpg');*/
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
}

/* Headings */
h1, h2 {
  color: #000000; /* rich red */
  text-align: center;
}

/* Navigation Bar */
nav {
  background-color:#E6C200; /* gold */
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav a {
  position: relative;
  color: #1C1C1C; /* dark text */
  text-decoration: none;
  margin: 0 12px;
  transition: color 0.3s, transform 0.3s;
}

nav a:hover {
  transform: scale(1.1);
  color: #B22222; /* red on hover */
}

/* Gold underline effect for nav */
nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #B22222;
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

nav a span {
  margin-right: 5px;
}

/* Sections */
section {
  max-width: 800px;
  margin: 30px auto;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: 'Georgia', serif;
}

/* Lists */
ul {
  list-style: none;
  margin-bottom: 20px;
  padding: 0;
}

ul li {
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}

li strong {
  display: block;
  font-size: 1.1em;
  color: #1C1C1C;
  margin-bottom: 5px;
}

li span.description {
  display: block;
  font-size: 0.95em;
  color: #555;
  font-style: italic;
}

/* Forms */
form {
  max-width: 400px;
  margin: 20px auto;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

form input, form button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
  border: 1px solid #ccc;
}

form button {
  background-color: #B22222; /* red button */
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

form button:hover {
  background-color: #8B1A1A; /* darker red */
  transform: scale(1.05);
}

/* Blockquotes */
blockquote {
  font-style: normal;
  margin: 20px auto;
  max-width: 700px;
  background-color: #FFF8E7; /* light cream */
  padding: 20px;
  border-left: 5px solid #FFD700; /* gold border */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

blockquote p {
  font-family: inherit;
  font-size: 1em;
  color: #1C1C1C;
}

.stars {
  color: #FFD700;
  font-size: 1.3em;
  display: block;
  margin-bottom: 8px;
}

.reviewer {
  display: block;
  margin-top: 10px;
  color: #555;
  font-weight: bold;
}

/* Images */
img.menu-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 15px 0;
  display: block;
}

/* Footer */
footer {
  background-color: #1C1C1C; /* dark footer */
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  font-size: 0.9em;
  border-top: 3px solid #FFD700; /* gold top border */
}

footer a {
  color: white;
  text-decoration: none;
  margin: 0 8px;
}

footer a:hover {
  text-decoration: underline;
}

footer a.social-icon, .social-icon {
  color: #FFD700;
  margin: 0 15px;
  transition: color 0.3s, transform 0.3s;
}

footer a.social-icon:hover, .social-icon:hover {
  color: #B22222;
  transform: scale(1.3);
}

/* Welcome Section */
.welcome-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #1C1C1C; /* charcoal */
}





.welcome-section p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #444;
}

.menu-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FFD700; /* gold button */
  color: #1C1C1C;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
}

.menu-button:hover {
  background-color: #B22222;
  color: white;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 600px) {
  body {
      padding: 10px;
  }
  section {
      padding: 15px;
  }
}
.hero-image {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  margin-bottom: 30px;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}






.smooth-carousel {
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.carousel-track {
  display: flex;
  width: calc(300px * 5); /* total width based on number of images */
  animation: scrollCarousel 20s linear infinite; /* smooth scrolling */
}

.carousel-track img {
  width: 300px; /* smaller image width */
  height: 200px; /* smaller image height */
  object-fit: cover;
  border-radius: 5px;
  margin-right: 10px;
}

@keyframes scrollCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* scroll half the track */
}





.owner-card {
  display: flex; gap: 20px; align-items: center;
  max-width: 1000px; margin: 40px auto; padding: 25px;
  background: #fff; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.owner-card img {
  width: 220px; height: 220px; object-fit: cover; border-radius: 10px;
}
.owner-card blockquote {
  margin: 10px 0 0; font-style: italic; color: #555; border-left: 3px solid #FFD700; padding-left: 10px;
}
@media(max-width: 768px){
  .owner-card{flex-direction: column; text-align:center;}
}




/* --- Menu Page Card Layout --- */
section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 10px;
}

section h2 {
  font-size: 1.8em;
  text-align: center;
  margin-bottom: 20px;
  color: #444;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.menu-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 15px;
}

.menu-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.menu-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.menu-card h3 {
  margin: 10px 0 5px;
  font-size: 1.2em;
  color: #111;
}

.menu-card p {
  font-size: 0.95em;
  color: #666;
  padding: 0 10px;
}

.menu-card .price {
  color: #e74c3c;
  font-weight: bold;
  margin-top: 5px;
  display: block;
  font-size: 1.1em;
}
/* --- Fade-in Animation --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

.menu-card:nth-child(1) { animation-delay: 0.1s; }
.menu-card:nth-child(2) { animation-delay: 0.2s; }
.menu-card:nth-child(3) { animation-delay: 0.3s; }
.menu-card:nth-child(4) { animation-delay: 0.4s; }
.menu-card:nth-child(5) { animation-delay: 0.5s; }

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}



.header {
  text-align: center;
  padding: 10px 0;
}


.logo {
  text-align: center;
  margin: 20px 0;
}

.logo-container {
  margin-bottom: 10px;
}

.logo-img {
  max-width: 180px;
  height: auto;
}
.carousel-section {
  max-width: 900px;
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.welcome-section {
  text-align: center;
  background-color: #ffffffdd;
  padding: 30px;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.welcome-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8em;
  margin-bottom: 10px;
  color: #B22222;
}

.welcome-section p {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 10px;
}

.menu-button {
  padding: 12px 24px;
  font-size: 1em;
}
.owner-card {
display: flex;
gap: 20px;
align-items: center;
max-width: 1000px;
margin: 40px auto;
padding: 25px;
background: #fff;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.owner-card img {
width: 220px;
height: 220px;
object-fit: cover;
border-radius: 10px;
}
/* === Welcome Section === */
.welcome-section {
max-width: 900px;
margin: 50px auto;
text-align: center;
padding: 40px;
background: #fff;
border-radius: 12px;
box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
animation: fadeIn 1s ease-in-out;
}

.welcome-section h1 {
font-family: 'Playfair Display', serif;
font-size: 2.6em;
margin-bottom: 20px;
color: #B22222;
}

.welcome-section p {
font-size: 1.1em;
color: #333;
margin-bottom: 15px;
line-height: 1.8;
}

.welcome-section .menu-button {
display: inline-block;
margin-top: 15px;
padding: 12px 25px;
background-color: #FFD700;
color: #1C1C1C;
font-weight: bold;
border-radius: 5px;
text-decoration: none;
transition: all 0.3s ease;
}

.welcome-section .menu-button:hover {
background-color: #B22222;
color: #fff;
transform: translateY(-2px);
}


/* ===================================
 HEADER / LOGO
=================================== */
.header {
  text-align: center;
  padding: 10px 0 0;
}
.logo-container {
  margin-bottom: 10px;
}
.logo-img {
  max-width: 200px;
  height: auto;
}

/* ===================================
   HERO
=================================== */
.hero {
  position: relative;
  min-height: 65vh;
  background: url('background.png') center/cover no-repeat; /* change to your hero image */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero-content {
  position: relative;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 0.8s both;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 15px;
}
.hero-sub {
  font-size: 1.1rem;
  margin-bottom: 25px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
}
.btn-primary {
  background: #FFD700;
  color: #1C1C1C;
}
.btn-primary:hover {
  background: #B22222;
  color: #fff;
}
.btn-outline {
  border: 2px solid #FFD700;
  color: #FFD700;
  background: transparent;
}
.btn-outline:hover {
  background: #FFD700;
  color: #1C1C1C;
}

/* ===================================
   PRESS
=================================== */
.press {
  max-width: 1000px;
  margin: 0 auto 30px;
  text-align: center;
}
.press h2 {
  margin-bottom: 15px;
  color: #1C1C1C;
}
.press-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.press-badge {
  background: #fff;
  color: #1C1C1C;
  border: 1px solid #eee;
  padding: 8px 14px;
  border-radius: 9999px;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* ===================================
   QUICK FACTS
=================================== */
.quick-facts{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:10px;
  max-width:1000px;
  margin:30px auto;
  background:#fff;
  border-radius:10px;
  box-shadow:0 2px 6px rgba(0,0,0,.06);
  padding:15px 20px;
  font-weight:600;
  color:#1C1C1C;
}
.quick-facts div{
  display:flex; align-items:center; justify-content:center; padding:8px 6px; text-align:center;
}



/* ===================================
   FEATURED (Chefâ€™s Specials)
=================================== */
.featured {
  max-width: 1100px;
  margin: 40px auto 20px;
  text-align:center;
}
.featured-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap:20px;
  margin-top:20px;
}
.featured h2{
  margin-bottom: 10px;
  color:#1C1C1C;
}
.section-cta{
  margin-top: 24px;
}

/* reuse .menu-card, .price styles from your menu page */
/* but just ensure .menu-card has visible opacity by default for the homepage */
.featured .menu-card{
  opacity:1 !important; 
  transform:none !important;
  animation:none !important;
}

/* ===================================
   OWNER CARD (with perfect circular image)
=================================== */
.owner-card {
  display: flex; gap: 24px; align-items: center;
  max-width: 1000px; margin: 40px auto; padding: 25px;
  background: #fff; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.owner-photo-wrapper {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #FFD700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.owner-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.owner-card h2{
  margin-top:0;
}
@media(max-width: 900px){
  .owner-card{flex-direction: column; text-align:center;}
}

/* ===================================
   REVEAL ON SCROLL
=================================== */
.reveal{
  opacity: 0;
  transform: translateY(30px);
  transition: all .6s ease;
}
.reveal.active{
  opacity: 1;
  transform: translateY(0);
}





/* ===================================
   Magazines
=================================== */


.featured-in {
  text-align: center;
  background-color: #fff;
  padding: 40px 20px;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.featured-in h2 {
  font-size: 2em;
  margin-bottom: 25px;
  color: #1C1C1C;
  font-family: 'Playfair Display', serif;
}











.featured-section {
  background: #f8f3e7;
  padding: 20px 0; /* Reduced padding */
  text-align: center;
  border-radius: 8px;
}

.featured-title {
  color: #333;
  font-size: 1.5rem; /* Smaller title */
  margin-bottom: 15px; /* Less margin below title */
}

.featured-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* Smaller gap */
  flex-wrap: wrap;
}

.featured-logo {
  width: 150px; /* Smaller logos */
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.featured-logo:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2),
              0 0 6px rgba(255, 200, 100, 0.3);
  border-radius: 6px;
}






/* === Reservation Page === */

/* Logo Centering */
.header, .header img {
  display: block;
  margin: 0 auto;
  text-align: center;
}

/* Page Title */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2em;
  color: #333;
  margin-top: 10px;
  text-align: center;
}

/* Reservation Form */
form {
  max-width: 400px;
  margin: 30px auto;
  padding: 25px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
}

form input, form button {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 1em;
  font-family: inherit;
}

form button {
  background-color: #333;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

form button:hover {
  background-color: #111;
  transform: scale(1.05);
}

/* Back to Home Link */
a.back-home {
  display: block;
  margin: 20px auto;
  text-align: center;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

a.back-home:hover {
  color: #8B1A1A;
  text-decoration: underline;
}



/* ===============================
 Mobile Responsiveness (600px and below)
================================ */
@media screen and (max-width: 600px) {
  body {
      padding: 10px;
  }

  nav {
      padding: 15px;
      font-size: 0.85em;
  }

  nav a {
      display: block;
      margin: 10px 0;
  }

  h1, h2 {
      font-size: 1.5em;
  }

  section, .welcome-section {
      margin: 20px auto;
      padding: 15px;
  }

  .menu-grid {
      grid-template-columns: 1fr;
  }

  .hero h1 {
      font-size: 1.6em;
  }

  .hero-sub {
      font-size: 1em;
  }

  .owner-card {
      flex-direction: column;
      text-align: center;
  }

  .carousel-track img {
      width: 100% !important;
      height: auto !important;
  }

  .featured-logos {
      flex-direction: column;
      gap: 10px;
  }

  form {
      width: 100%;
      padding: 15px;
  }

  .btn, .menu-button {
      padding: 10px 15px;
      font-size: 0.95em;
  }

  .quick-facts {
      grid-template-columns: 1fr;
  }
}
