/* style.css */

/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}
a {
  color: #007BFF;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: #004d40;
  color: white;
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header h1 {
  font-size: 1.8rem;
  letter-spacing: 2px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav ul li {
  font-weight: 600;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-toggle span {
  height: 3px;
  width: 25px;
  background: white;
  margin-bottom: 5px;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  background: url('../images/restaurant-hero.jpg') center/cover no-repeat;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
  text-align: center;
  padding: 0 20px;
}
.hero h2 {
  font-size: 2.5rem;
  max-width: 700px;
}

/* Main Content */
main {
  padding: 40px 0;
}
section {
  margin-bottom: 40px;
}
h2.section-title {
  font-size: 2rem;
  color: #004d40;
  margin-bottom: 20px;
  border-bottom: 3px solid #007BFF;
  display: inline-block;
  padding-bottom: 5px;
}

/* About Us */
.about {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.about-text {
  flex: 1 1 400px;
  font-size: 1.1rem;
  color: #555;
}
.about-image {
  flex: 1 1 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}
.gallery img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}
.gallery img:hover {
  transform: scale(1.05);
}

/* Info Cards (Excursions, Accommodation) */
.info-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  flex: 1 1 300px;
  transition: box-shadow 0.3s ease;
}
.card:hover {
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.card h3 {
  margin-bottom: 15px;
  color: #004d40;
}
.card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

/* Contact Section */
.contact {
  background-color: #004d40;
  color: white;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
}
.contact h2 {
  margin-bottom: 15px;
}
.contact a {
  color: #80cbc4;
  font-weight: 600;
  font-size: 1.1rem;
}
.contact a:hover {
  color: #b2dfdb;
}

/* Footer */
footer {
  background-color: #00251a;
  color: #ccc;
  text-align: center;
  padding: 15px 20px;
  font-size: 0.9rem;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
  }
  nav ul {
    flex-direction: column;
    width: 100%;
    display: none;
  }
  nav ul.active {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
  .about {
    flex-direction: column;
  }
  .info-cards {
    flex-direction: column;
  }
}
