

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Header */
header {
    padding: 10px;
    background-color:#2e1a47;
    text-align: center;
    color: white;
}

header h1 {
    font-size: 60px;
}

/* Navigation Bar */
nav {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    gap: 30px; /* adds spacing between nav links */
    background-color: #3c264e;
    padding: 15px 20px;
}

nav a {
    text-decoration: none;
    padding: 10px 15px; /* internal spacing */
    color: #ffd700;
    font-size: 18px;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 5px;
}

nav a:hover {
    background-color: #ffffff30;
    color: #f0f0f0;
}
main {
    background-color: rgb(255, 255, 255);
    text-align: center;
}

h2 {
    padding: 20px;
}

/* Section Styling */
section {
    min-height: 100vh;
    padding: 20px;
}

section:nth-child(even) {
    background-color: rgb(241, 241, 241);
}



/* Image Styling */
img {
    padding: 10px;
}

/* Footer */
footer {
    background-color: #333;
    overflow: hidden;
    text-align: center;
    padding: 20px;
}

footer a {
    text-decoration: none;
    padding: 20px;
    color: white;
}

/* Menu Section Container */
.menu-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  width: 100%;
  padding: 40px 0;
}

/* Individual Dish Styling */
.dish {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* Hover Effect */
.dish:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.dish img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 10px;
  background-color: #fff;
}

/* Dish Titles */
#menu h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-top: 40px;
  color: #6a0dad; /* Purple */
}

/* Subsection Headings like Main Dishes, Desserts */
#menu > h3 {
  font-size: 1.5rem;
  color: #6a0dad;
  text-align: left;
  padding-left: 10px;
  margin-top: 40px;
}

.dish h3, .dish h4 {
  font-size: 1.2rem;
  color: #000;
  text-align: center;
  margin: 12px 0 4px;
}

/* Dish Prices */
.dish p {
  font-size: 1rem;
  color: #888;
  margin-bottom: 15px;
}
.about-us {
    text-align: center;
    padding: 70px 50px;
    background-color: #f3e6ff; /* Light Lavender background */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Main Headings (About us, Vision & Mission, What Makes Us Unique) */
.about-us h2 {
    font-size: 36px;
    color: #4b0082; /* Deep Purple */
    font-weight: bold;
    margin-bottom: 25px;
}

/* Subheadings (Vision, Mission) */
.about-us h3 {
    font-size: 28px;
    color: #4b0082; /* Deep Purple */
    margin-top: 20px;
}

/* Paragraph text */
.about-us p {
    font-size: 20px;
    line-height: 1.8;
    color: #333333; /* Dark Gray for visibility */
    max-width: 900px;
    margin: 0 auto 40px;
}

/* Feature list */
.about-us ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Each feature badge */
.about-us ul li {
    font-size: 18px;
    background: #ffd700; /* Yellow background */
    color: #4b0082;       /* Purple text */
    padding: 15px 25px;
    margin: 10px;
    border-radius: 8px;
    white-space: nowrap;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.about-us ul li:hover {
    background-color: #ffcf33;
    transform: scale(1.05);
}
.contact-section {
    background-color: #f3e6ff; /* Elegant lavender background */
    padding: 50px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 36px;
    color: #4b0082; /* Deep purple */
    margin-bottom: 25px;
}

.contact-section p {
    font-size: 18px;
    color: #333333; /* Dark gray for readability */
    margin-bottom: 35px;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.contact-item {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 260px;
    transition: transform 0.3s ease;
}

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

.contact-item h3 {
    margin-bottom: 12px;
    color: #4b0082; /* Deep purple */
    font-size: 22px;
}

.contact-item p {
    margin: 0;
    font-size: 17px;
    color: #444444;
}

/* Map iframe */
.map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.order-section {
    background-color: #f5ebff; /* Light lavender background */
    padding: 60px 20px;
    text-align: center;
}

.order-section h2 {
    font-size: 36px;
    color: #4b0082; /* Deep purple */
    margin-bottom: 15px;
}

.order-section p {
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    font-size: 16px;
    color: #4b0082;
    margin-bottom: 5px;
    display: block;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
}

.input-group textarea {
    resize: vertical;
    min-height: 80px;
}

.payment-options {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.order-btn {
    background-color: #ffbb33;
    color: #fff;
    padding: 12px 24px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.order-btn:hover {
    background-color: #ffa500;
}

html {
    scroll-behavior: smooth;
}

.hero-section {
    height: 100vh; /* Full screen */
    background-image: url('static/12.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 0 20px;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* dark overlay for better text visibility */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
}
.menu-container.beverages .dish img {
  object-fit: contain;
  width: 100%;
  height: 220px;
  background-color: white;
  padding: 10px;
}
.menu-container.beverages .dish {
  padding: 10px 0;
}

.site-footer {
  background: linear-gradient(to right, #2e1a47, #4b006e);
  color: #fff;
  padding: 50px 20px 20px;
  font-size: 16px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo h2 {
  font-size: 28px;
  color: #ffd700;
}

.footer-logo p {
  margin-top: 10px;
  font-size: 15px;
  color: #ddd;
}

.footer-links h4,
.footer-social h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffd700;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-social .social-icons a {
  font-size: 22px;
  margin-right: 15px;
  color: #ffd700;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-social .social-icons a:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  color: #aaa;
  font-size: 14px;
}