/* General Body & Typography */
.logo {
  width: 200px;   /* You can adjust this size */
  height: auto;   /* Maintains aspect ratio */
  display: block;
  margin: 0 auto; /* Centers the logo */
}
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f8f8; /* Light background */
    color: #333;
    line-height: 1.6;
}
.hero-section {
    height: 100vh;
    background-image: url("images/WEdding.jpg"); /* 🔁 Replace with correct path */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    color: white;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
    border-radius: 10px;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}


h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #8B4513; /* SaddleBrown - a warm, food-related color */
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 3em;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

h2.category-title {
    font-size: 2.5em;
    padding: 20px 0;
    background-color: #f0ead6; /* Light, creamy background */
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
}

h2.category-title:hover {
    background-color: #e6e0cc;
}

h3 {
    font-size: 1.8em;
    color: #A0522D; /* Sienne - slightly darker, richer brown */
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #D2B48C; /* Tan for a subtle underline */
    display: inline-block;
    padding-bottom: 5px;
}

ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    display: grid; /* Use grid for multi-column layout */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive columns */
    gap: 10px;
}

li {
    background-color: #fff;
    padding: 12px 20px;
    margin-bottom: 8px;
    border-left: 5px solid #FFD700; /* Gold accent */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border-radius: 5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1606787366810-ac3b6329430c?q=80&w=1770&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #8B4513; /* SaddleBrown */
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: #e6c200;
    transform: scale(1.05);
}


/* Menu Container */
.menu-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

/* Menu Categories */
.menu-category {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    margin-bottom: 60px;
    padding: 30px;
    overflow: hidden; /* Clear floats */
}

.category-image {
    width: 100%;
    height: 300px; /* Fixed height for consistency */
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area without distortion */
    display: block;
    transition: transform 0.3s ease;
}

.category-image img:hover {
    transform: scale(1.05);
}

.category-content {
    padding: 20px 0;
}

/* Footer */
.footer {
    background-color: #8B4513; /* SaddleBrown */
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
}

.footer p {
    margin: 0;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    h2.category-title {
        font-size: 2em;
    }

    h3 {
        font-size: 1.5em;
    }

    .hero-section {
        padding: 80px 20px;
    }

    .menu-category {
        padding: 20px;
        margin-bottom: 40px;
    }

    ul {
        grid-template-columns: 1fr; /* Single column on small screens */
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }

    h2.category-title {
        font-size: 1.8em;
    }

    .hero-section {
        min-height: 400px;
    }
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.features-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background-color: #ffffff;
}

.features-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  width: 500px;
}

.features-content {
  max-width: 600px;
  margin-left: 40px;
}

.subtitle {
  color: #8BC34A;
  font-weight: bold;
  margin-bottom: 10px;
}

.main-title {
  font-size: 36px;
  margin-bottom: 20px;
  color: #222;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
body {
.services-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: nowrap; /* Ensures 3 items per row only */
}

.service-card {
  background: #0fc64c;
  border-radius: 15px;
  width: 250px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.service-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.service-card p {
  margin: 0;
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.hero-section {
  background: linear-gradient(120deg, #1ef751, #ffa94d);
  background-size: 200% 200%;
  animation: bgAnimation 8s ease-in-out infinite;
  text-align: center;
  padding: 80px 20px;
  .contact-section {
  background: linear-gradient(to right, #fff7f0, #ffe4d9);
  padding: 50px 20px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: 50px auto;
}

.contact-section h2 {
  font-size: 36px;
  color: #9c3d00;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 2px #ffd7b5;
}

.contact-section p {
  font-size: 18px;
  color: #333;
  margin: 12px 0;
}

.contact-section .phone,
.contact-section .address {
  font-weight: 500;
}

.contact-section .social a {
  color: #9c3d00;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s, text-shadow 0.3s;
}

.contact-section .social a:hover {
  color: #d94600;
  text-shadow: 0 0 8px #ffccaa;
}