:root {
    --sage: #8DAA91;
    --cream: #FDFBF7;
    --terracotta: #A35D47;
    --charcoal: #2C3333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 2rem 5%;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.logo {
    font-weight: bold;
    letter-spacing: 3px;
    color: var(--terracotta);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--charcoal);
    margin-left: 2rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(253, 251, 247, 0.8), rgba(253, 251, 247, 0.8)), 
                url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?auto=format&fit=crop&q=80&w=1600') no-repeat center/cover;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s forwards;
}

.reveal-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s 0.4s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards */
.section { padding: 5rem 10%; }
.section-title { text-align: center; margin-bottom: 3rem; font-size: 2.5rem; }

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.4s ease;
    border-bottom: 4px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
}

.vata { border-color: #AEC6CF; }
.pitta { border-color: #FFB347; }
.kapha { border-color: #77DD77; }