
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#menu {
background: #1e2f1f;
}

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

.menu-item {
background: #2a4230;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
transition: transform 0.3s;
}

.menu-item:hover {
transform: scale(1.03);
}

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

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

.menu-item p {
padding: 0 15px 20px;
font-size: 0.95rem;
color: #e0f2f1;
}
body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(to bottom, #0f1a0f 0%, #1c3b1a 100%);
  color: #f4f4f4;
  overflow-x: hidden;
}

nav {
position: fixed;
top: 0;
width: 100%;
background: transparent; /* ← Fully transparent */
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 30px;
z-index: 1000;
}


.nav-left img {
  height: 40px;
  width: 60px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #a5d6a7;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #fff;
}

header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.carousel-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-img.active {
  opacity: 1;
}

.header-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.header-content img {
  max-width: 300px;
  margin-bottom: 20px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


@keyframes fly {
  0% { transform: translateX(0); }
  100% { transform: translateX(150vw); }
}

.btn {
  padding: 12px 25px;
  background: #4caf50;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.btn:hover {
  background: #388e3c;
  transform: scale(1.05);
}

section {
  padding: 100px 20px;
  text-align: center;
  background-color: #1b2b1c;
}

section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #a5d6a7;
}

section p, section ul {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.1rem;
}

#gallery-section {
  background: #223b23;
}

#contact {
  background: #263826;
}

.contact-info {
  margin-top: 20px;
}

.contact-info p {
  margin: 10px 0;
}

footer {
  text-align: center;
  padding: 20px;
  background: #0e1a0f;
  color: #ccc;
}
#about {
background: #1a2e1c;
padding: 80px 20px;
color: #f4f4f4;
}

.about-container {
display: flex;
flex-wrap: wrap;
max-width: 1200px;
margin: 0 auto;
align-items: center;
gap: 40px;
}

.about-image {
flex: 1 1 300px;
display: flex;
justify-content: center;
align-items: center;
}

.about-image img {
max-width: 300px;
border-radius: 20px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
animation: float 5s ease-in-out infinite;
}

.about-text {
flex: 2 1 400px;
}

.about-text h2 {
font-size: 2.5rem;
font-family: 'Playfair Display', serif;
margin-bottom: 20px;
color: #a5d6a7;
}

.about-text p {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 20px;
}

@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
.about-container {
  flex-direction: column;
  text-align: center;
}

.about-text h2 {
  font-size: 2rem;
}
}
#gallery-section {
background: #0f1a0f;
padding: 80px 20px;
color: #f4f4f4;
text-align: center;
}

.gallery-header h2 {
font-size: 2.5rem;
font-family: 'Playfair Display', serif;
color: #a5d6a7;
margin-bottom: 10px;
}

.gallery-header p {
font-size: 1.1rem;
margin-bottom: 40px;
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
max-width: 1200px;
margin: 0 auto;
}

.gallery-item {
overflow: hidden;
border-radius: 15px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
transform: scale(1);
transition: transform 0.5s ease, box-shadow 0.3s ease;
animation: fadeInUp 1s ease forwards;
opacity: 0;
}

.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.gallery-item:hover {
transform: scale(1.05);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.gallery-item:hover img {
transform: scale(1.1);
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}

to {
opacity: 1;
transform: translateY(0);
}
}
#contact {
background: #1c3b1a;
padding: 80px 20px;
color: #f4f4f4;
text-align: center;
}

#contact h2 {
font-size: 2.5rem;
font-family: 'Playfair Display', serif;
color: #a5d6a7;
margin-bottom: 10px;
}

.contact-subtext {
font-size: 1.1rem;
margin-bottom: 40px;
}

.contact-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 40px;
max-width: 1000px;
margin: auto;
}

.contact-info {
font-size: 1.1rem;
line-height: 1.8;
flex: 1 1 300px;
text-align: left;
}

.contact-info p {
background: rgba(255, 255, 255, 0.05);
padding: 10px 15px;
border-radius: 8px;
margin: 10px 0;
}

.contact-form {
flex: 1 1 350px;
display: flex;
flex-direction: column;
gap: 15px;
}

.contact-form input,
.contact-form textarea {
padding: 12px;
border: none;
border-radius: 8px;
font-size: 1rem;
background: #2a4c2a;
color: #fff;
resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
color: #cfcfcf;
}

.contact-form input:focus,
.contact-form textarea:focus {
outline: 2px solid #4caf50;
background: #324f32;
}

.contact-form button {
align-self: flex-start;
}
.hamburger {
display: none;
font-size: 1.5rem;
cursor: pointer;
color: #fff;
}
/* Responsive styles */
@media (max-width: 768px) {
.hamburger {
display: block;
}

.nav-links {
display: none;
position: absolute;
top: 60px;
right: 20px;
background-color: rgba(0, 0, 0, 0.9);
flex-direction: column;
gap: 1rem;
padding: 1rem;
border-radius: 10px;
}

.nav-links.active {
display: flex;
}

nav {
justify-content: space-between;
align-items: center;
}
}
