/* 
    Savora Naturals - Modular Stylesheet
    Focus: Premium, Natural, Minimalist
*/

:root {
    /* Colors */
    --clr-primary: #2D5A27; /* Forest Green */
    --clr-primary-light: #4A7C41;
    --clr-secondary: #F4F1EA; /* Cream */
    --clr-accent: #8B5E3C; /* Soft Brown */
    --clr-text: #1A1A1A;
    --clr-text-muted: #555555;
    --clr-white: #FFFFFF;
    
    /* Typography */
    --ff-heading: 'Outfit', sans-serif;
    --ff-body: 'Inter', sans-serif;
    
    /* Spacing */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    background-color: var(--clr-secondary);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Base Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--ff-heading);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.btn-primary:hover {
    background-color: var(--clr-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
}

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

/* Navbar */
.navbar {
    padding: var(--space-md) 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--clr-text);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--clr-primary);
}

/* Hero Section */
.hero {
    padding: var(--space-xl) 0 var(--space-lg);
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(45, 90, 39, 0.05), transparent);
}

.badge {
    background-color: rgba(45, 90, 39, 0.1);
    color: var(--clr-primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
    display: inline-block;
}

.hero-title {
    font-family: var(--ff-heading);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    color: var(--clr-text);
}

.text-gradient {
    background: linear-gradient(to right, var(--clr-primary), var(--clr-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
}

/* Sections */
.about {
    padding: var(--space-lg) 0;
}

.section-title {
    font-family: var(--ff-heading);
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.section-text {
    color: var(--clr-text-muted);
    margin-bottom: var(--space-md);
}

.features-list {
    list-style: none;
    margin-top: var(--space-md);
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.features-list .icon {
    font-size: 1.2rem;
}

.about-image-container {
    position: relative;
    padding: var(--space-md);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: var(--space-lg);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    text-align: center;
    font-style: italic;
    color: var(--clr-primary);
    font-size: 1.5rem;
    font-family: var(--ff-heading);
}

/* Newsletter Section */
.newsletter {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    padding: var(--space-lg) 0;
    margin: var(--space-lg) var(--space-md);
    border-radius: 32px;
}

.newsletter .section-title, .newsletter .section-text {
    color: var(--clr-white);
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
    max-width: 500px;
    margin: var(--space-md) auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-family: var(--ff-body);
}

@media (max-width: 500px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* Footer */
.footer {
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

.social-links {
    margin-top: var(--space-md);
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.social-link {
    text-decoration: none;
    color: var(--clr-primary);
    font-weight: 600;
}
