/* Reset & base setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #fffdf7;
  color: #333;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: #3e2c2c;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: bold;
}

.nav-links li {
  display: inline-block;
  margin-left: 30px;
}

.nav-links a {
  color: #fff;
  font-size: 16px;
  position: relative;
}

.nav-links a::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #ffcc70;
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background: url('../images/hero1.jpeg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  z-index: 1;
}

.hero-content {
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 48px;
  font-family: 'Playfair Display', serif;
  color: #ffe8b8;
  margin-bottom: 10px;
}

.tagline {
  font-size: 22px;
  margin-bottom: 30px;
}

.hero-btn {
  background: #ffcc70;
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #ffc340;
}

/* Intro Section */
.intro {
  padding: 80px 60px;
  background-color: #fffaf2;
}

.intro h2 {
  font-size: 36px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  text-align: center;
}

.intro p {
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: 18px;
  text-align: center;
}

/* CTA Section */
.cta {
  padding: 60px 40px;
  text-align: center;
  background: linear-gradient(to right, #ffecd2, #fcb69f);
}

.cta h2 {
  font-size: 30px;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.cta p {
  font-size: 18px;
  margin-bottom: 20px;
}

.cta-btn {
  background: #3e2c2c;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #6d4e4e;
}

/* Footer */
footer {
  background: #3e2c2c;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-icons a {
  margin: 0 10px;
  font-size: 20px;
  color: #ffcc70;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #fff;
}



/* ===== Menu Section ===== */
.menu-section {
  padding: 80px 40px;
  background-color: #fffaf1;
  text-align: center;
}

.menu-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 10px;
  color: #3e2c2c;
}

.menu-intro {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-content: center;
  padding: 0 10px;
}

.menu-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

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

.menu-item h3 {
  font-size: 20px;
  margin: 15px 0 5px;
  font-family: 'Playfair Display', serif;
  color: #3e2c2c;
}

.menu-item p {
  font-size: 16px;
  color: #666;
  padding: 0 15px 20px;
}


/* ===== About Page Styling ===== */
.about-section,
.mission-vision {
  padding: 80px 40px;
  background-color: #fffdf6;
  text-align: center;
}

.about-section h2,
.mission-vision h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 20px;
  color: #3e2c2c;
}

.about-section p,
.mission-vision p {
  font-size: 17px;
  color: #555;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.8;
}

/* ===== Team Section ===== */
.team-section {
  padding: 60px 40px;
  background-color: #f9f2e9;
  text-align: center;
}

.team-section h2 {
  font-size: 30px;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
  color: #3e2c2c;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.team-member {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 220px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.team-member h3 {
  font-size: 18px;
  margin: 5px 0;
}

.team-member p {
  font-size: 15px;
  color: #666;
}

/* ===== Gallery Section ===== */
.gallery-section {
  padding: 80px 40px;
  background-color: #fef9f4;
  text-align: center;
}

.gallery-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: #3e2c2c;
  margin-bottom: 10px;
}

.gallery-intro {
  font-size: 17px;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 0 10px;
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.gallery-grid img:hover {
  transform: scale(1.05);
}


/* ===== Contact Section ===== */
.contact-section {
  padding: 80px 40px;
  background-color: #fef9f3;
  text-align: center;
}

.contact-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 10px;
  color: #3e2c2c;
}

.contact-section p {
  color: #555;
  font-size: 17px;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: inherit;
}

.contact-form button {
  background-color: #3e2c2c;
  color: #fff;
  padding: 12px 24px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #5c4242;
}

/* ===== Map and Timings Section ===== */
.location-section {
  padding: 60px 40px;
  background-color: #fff;
}

.map-time {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.map {
  flex: 1 1 400px;
}

.hours {
  flex: 1 1 300px;
  text-align: center;
}

.hours h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
  color: #3e2c2c;
}

.hours ul {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}
