/* General Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #fff; 
    color: #333;
}

/* 🍑 Theme: Peach Gradient */
.peach-gradient {
    /* Subtle light peach to soft orange gradient */
    background: linear-gradient(135deg, #FFC0CB, #FFA07A); 
    color: white;
    padding: 20px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.text-center {
    text-align: center;
}

/* Header/Hero Styling */
header {
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-top: 10px;
    letter-spacing: 2px;
}

header h2 {
    font-size: 1.2em;
    font-weight: 300;
    margin-bottom: 20px;
}

.logo {
    width: 100px; /* Adjust size as needed */
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

/* Navigation */
header nav ul {
    list-style: none;
    padding-top: 10px;
}

header nav ul li {
    display: inline;
    padding: 0 15px;
}

header nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

header nav a:hover {
    color: #ff5722; /* Darker orange on hover */
}

/* Section Styling */
section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

section h3 {
    text-align: center;
    color: #ff7043; /* Bright coral color for headings */
    margin-bottom: 20px;
    font-size: 2em;
}

/* Button Styling */
.menu-button-group {
    margin: 30px 0;
}

.button {
    display: inline-block;
    padding: 12px 25px;
    margin: 10px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
    border: none;
}

.primary-button {
    background-color: #ff9800; /* Orange */
    color: white;
}

.primary-button:hover {
    background-color: #f57c00;
}

.secondary-button {
    background-color: #4CAF50; /* Green (Swiggy/Zomato contrast) */
    color: white;
}

.secondary-button:hover {
    background-color: #388E3C;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: center;
}

.contact-item {
    background: #fff3e0; /* Very light peach */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-item h4 {
    color: #ff7043;
    margin-bottom: 10px;
}

.contact-item a {
    color: #00796b;
    text-decoration: none;
    font-weight: bold;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
}
