/* CSS Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth; /* Enables smooth scrolling for anchor links */
}

body {
    line-height: 1.6;
    color: #333;
}

/* Typography & Colors */
h1, h2, h3 {
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: #8b0000; /* Deep traditional red */
}

.subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #666;
}

/* Header & Navigation */
header {
    background-color: #3e2723; /* Dark earthy brown */
    color: white;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.logo span {
    color: #ffb300; /* Gold/Turmeric accent */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffb300;
}

/* Hero Section */
.hero {
    height: 85vh;
    /* Using a dusty, earthy aesthetic image from Unsplash */
    background: linear-gradient(rgba(62, 39, 35, 0.7), rgba(139, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1558231221-a3f875323e0f?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ffb300;
    color: #3e2723;
    text-decoration: none;
    font-weight: 800;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
}

.btn:hover {
    background-color: #ffa000;
    transform: scale(1.05);
}

/* Layout Containers */
.section {
    padding: 80px 5%;
}

.light-bg {
    background-color: #fcf9f2; /* Light cream */
}

.dark-bg {
    background-color: #eae3d2;
    border-top: 3px solid #8b0000;
    border-bottom: 3px solid #8b0000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Split Content (Text + Image) */
.split-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.split-content .text {
    flex: 1;
    min-width: 300px;
}

.split-content .text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #444;
}

.split-content .image-box {
    flex: 1;
    min-width: 300px;
}

.split-content .image-box img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Cards Grid */
.grid-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: white;
    flex: 1;
    min-width: 280px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    border-bottom: 4px solid #8b0000;
    transition: transform 0.3s ease;
}

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

.card h3 {
    color: #3e2723;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background-color: #3e2723;
    color: #ccc;
    text-align: center;
    padding: 25px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .split-content {
        flex-direction: column;
    }
}
