/* Reset & General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fffdf8;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #8B0000;
  color: white;
  padding: 20px 0;
}

header .container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

header h1 {
  font-size: 28px;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background-image: url("../images/resImages/restaurant.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 0 30px;
  height: 100vh; 
  display: flex;
  justify-content: center; 
  align-items: flex-start;
  text-align: center;
  position: relative;
}
.hero-text {
  margin-top: 40px; 
  padding: 20px;
  max-width: 800px;
}

.hero h2 {
  padding-top: 0px;
  font-size: 40px;
  margin-bottom: 5px;
}

.hero p {
  font-size: 20px;
}

/* Gallery Section */
.gallery {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.gallery h2 {
  margin-bottom: 30px;
  font-size: 32px;
  color: #8B0000;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
   grid-template-rows: repeat(2, auto); 
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: #8B0000;
  color: white;
  padding: 20px 30px;
  margin-top: 40px;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  text-align: left;
  margin-bottom: 15px;
}

.footer-about,
.footer-contact {
  max-width: 300px;
}

.footer-copy {
  text-align: center;
  font-size: 0.9em;
  margin-top: 10px;
}