/* Basic Reset & Fonts */
:root {
    --bg-color: #FDF5E6;
    --text-color: #8B4513;
    --primary-accent: #FFC300;
    --secondary-accent: #228B22;
    --white-color: #ffffff;
    --font-heading: 'Lora', serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(253, 245, 230, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-accent);
}

/* Hero Section */
#hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://placehold.co/1920x1080/228B22/FDF5E6?text=Gomata+Naturals+Farm') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white-color);
    padding: 0 2rem;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: var(--primary-accent);
    color: var(--text-color);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e6b000;
}

/* General Section Styling */
.section-container {
    padding: 5rem 10%;
    text-align: center;
    border-top: 4px solid transparent;
    border-image: url('data:image/svg+xml;charset=UTF-8,<svg width="100" height="10" viewBox="0 0 100 10" xmlns="http://www.w3.org/2000/svg"><path d="M 0 5 Q 12.5 0, 25 5 T 50 5 T 75 5 T 100 5" stroke="%238B4513" stroke-width="2" fill="none"/></svg>') 4 stretch;
}

.section-container h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #a0522d; /* Sienna */
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.alternate-bg {
    background-color: #F5E8D4;
}

/* Products Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    font-family: var(--font-heading);
    margin: 1rem 0 0.5rem 0;
}

.product-desc {
    padding: 0 1rem;
    font-size: 0.9rem;
    min-height: 45px;
}

.product-price {
    font-weight: bold;
    font-size: 1.2rem;
    margin: 1rem 0;
}

.buy-button {
    background-color: var(--secondary-accent);
    color: var(--white-color);
    border: none;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.buy-button:hover {
    background-color: #1c6b1c;
}

/* Villa Stay Section */
.villa-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: left;
}

.villa-content img {
    max-width: 50%;
    border-radius: 10px;
}

.villa-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Gaushala Section */
.gaushala-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

/* Footer */
footer {
    background-color: #4a2c12;
    color: var(--bg-color);
    padding: 3rem 10% 1rem;
    text-align: center;
}

.footer-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

.address {
    font-style: italic;
}

.footer-bottom {
    border-top: 1px solid #a0522d;
    margin-top: 2rem;
    padding-top: 1rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        /* Add mobile menu logic here if needed */
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
    
    .villa-content {
        flex-direction: column;
    }
    
    .villa-content img {
        max-width: 100%;
    }
}