/* Basic Reset and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #b54721; /* A warm, inviting orange-brown */
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #b54721;
}

/* Hero Section */
.hero {
    background-image: url('../images/hero-bg.jpg'); /* Replace with a high-quality photo of Gujarati food */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content p {
    font-size: 1rem; /* Reduced font size */
    margin-bottom: 1rem;
}

.hero-content p.indian-cuisine-text {
    font-size: 1.1rem; /* Slightly larger for emphasis */
    font-style: italic;
    margin-top: 1.5rem;
}

.hero-content .tagline {
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

/* You might need to add a media query for smaller screens */
@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero .motto {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.hero .tagline {
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

/* General Section Styling */
main {
    padding: 2rem;
}

section {
    padding: 4rem 0;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #b54721;
    margin-bottom: 2rem;
}

/* Projects Preview Section */
.projects-preview {
    background-color: #fff;
    padding: 4rem 2rem;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-item {
    background-color: #fefefe;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
}

.project-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-item h3 {
    font-size: 1.5rem;
    margin: 1rem 1rem 0.5rem;
    color: #b54721;
}

.project-item p {
    margin: 0 1rem 1rem;
}

/* Reviews Section */
.reviews {
    background-color: #fdf5e6; /* A light, creamy background */
}

.review-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 450px;
    flex: 1 1 400px;
    text-align: center;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.review-card .reviewer {
    font-style: normal;
    font-weight: bold;
    color: #b54721;
}

/* License Info Section */
.license-info {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #eee;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

.contact-info p {
    margin: 0.25rem 0;
}

/* New styles for the contact form */
.contact-form-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-form-section p {
    text-align: center;
    margin-bottom: 2rem;
}

.form-container {
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b54721;
    box-shadow: 0 0 5px rgba(181, 71, 33, 0.5);
}

.form-container button {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #b54721;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-container button:hover {
    background-color: #9d3e1d;
}
