/* Base Styles */
:root {
    --primary: #2d6a4f; /* Deep Farm Green */
    --secondary: #d8f3dc; /* Light Mint */
    --accent: #e07a5f; /* Terracotta/Clay */
    --dark: #1b4332;
    --light: #f8f9fa;
    --text: #333;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: #fff;
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #c96548;
}

.btn-primary:disabled {
    background-color: #999;
    cursor: not-allowed;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 600;
    margin-left: 10px;
    transition: 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--dark);
}

/* Navbar */
.navbar {
    background: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

.dot {
    color: var(--accent);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 67, 50, 0.7); /* Green overlay */
}

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

.badge {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1 {
    font-size: 4rem;
    margin: 10px 0 20px 0;
    line-height: 1.2;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
}

/* Stats */
.stats {
    background: var(--primary);
    color: white;
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: white;
}

/* Mission */
.mission {
    padding: 80px 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 10px auto;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Tech Section */
.tech-section {
    padding: 80px 0;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tech-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tech-list {
    list-style: none;
    margin-top: 30px;
}

.tech-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.tech-list i {
    color: var(--accent);
    margin-right: 15px;
}

.tech-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    height: 400px;
}

/* Heritage */
.heritage {
    padding: 80px 0;
    text-align: center;
    background: #fff;
}

.heritage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.food-card {
    height: 300px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    background: #f0f0f0;
}

.food-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.food-card:hover {
    transform: scale(1.02);
}

.food-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
}

/* Alignment */
.alignment {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 30px 0;
    text-align: center;
}

.logos span {
    margin: 0 10px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Footer */
footer {
    background: #111;
    color: white;
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-left h2 {
    color: white;
    margin-bottom: 15px;
}

/* FSSAI Legal Details Styling */
.legal-details {
    margin: 25px 0;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.8;
}

.legal-details strong {
    color: #fff;
}

.socials {
    margin-top: 20px;
}

.socials a {
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: 0.3s;
}

.socials a:hover {
    color: var(--accent);
}

.footer-right form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.footer-right input, .footer-right select {
    padding: 12px;
    border-radius: 5px;
    border: none;
    font-family: 'Inter', sans-serif;
}

#form-status-msg {
    display: none;
    font-size: 0.9rem;
    margin-top: 5px;
}

.bottom-bar {
    border-top: 1px solid #333;
    text-align: center;
    padding: 20px 0;
    font-size: 0.8rem;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }

    .hero h1 { font-size: 2.5rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .mission-grid { grid-template-columns: 1fr; }
    .tech-content { grid-template-columns: 1fr; }
    .heritage-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }

    .tech-image img {
        height: auto;
    }
}