/* Eka Natural - Premium Design System */

:root {
    /* Luxury Color Palette */
    --color-primary: #1A3C2B;
    /* Deep Forest Green */
    --color-secondary: #D4AF37;
    /* Antique Gold */
    --color-accent: #C5A028;
    /* Rich Gold Hover */
    --color-bg: #eae5d8;
    /* Premium Beige/Cream */
    --color-text: #111111;
    /* Jet Black */
    --color-text-light: #555555;
    /* Dark Gray */
    --color-white: #FFFFFF;
    --color-light-gray: #EAEAEA;
    /* Slightly darker for contrast if needed */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    /* Removed gradients for clean luxury look */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
    border-radius: 8px;
}

/* Typography Utilities */
.display-text {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -1px;
}

.heading-lg {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-md);
}

.heading-md {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.text-lg {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.text-center {
    text-align: center;
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

/* Buttons */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    /* Gold text on Green */
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--color-primary);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-2px);
    background-color: var(--color-secondary);
    color: var(--color-primary);
    border-color: var(--color-secondary);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 6px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-secondary);
}

/* Glassmorphism Card */
/* Luxury Minimalist Card */
.glass-card {
    background: var(--color-white);
    border: 1px solid #E0E0E0;
    /* Subtle border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    /* Very subtle shadow for depth */
    border-radius: 0;
    /* Sharp edges */
    padding: var(--spacing-md);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-secondary);
    /* Gold border on hover */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.glass-card:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-secondary);
    /* Gold bar on bottom hover */
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 0;
    /* Reduced padding for compact look */
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.5);
    /* Professional Transparent White */
    backdrop-filter: blur(12px);
    /* Subtle frosted effect */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    line-height: 0;
    /* Remove excess line height space */
}

.logo img {
    height: 40px;
    /* Smaller height for compact navbar */
    width: auto;
    display: block;
    /* Remove inline baseline spacing */
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    /* Vertically align links and button */
    height: 100%;
}

.nav-links a.btn {
    padding: 0.8rem 2rem;
    /* Adjust padding if needed */
    margin-left: var(--spacing-sm);
    /* Add some space before the button */
    margin-top: 0;
    /* Override any potential margins */
    display: inline-flex;
    /* Ensure flex behavior */
    height: auto;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Nav */
.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Simplification for now, would need JS to toggle */
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .flex-md-row {
        flex-direction: row !important;
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse !important;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Header space */
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--color-secondary);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    bottom: 0;
    left: -50px;
}

.hero-content {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Section Specifics */
.tea-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.tea-card-img {
    height: 280px;
    background-color: #E8EBE9;
    border-radius: 8px;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
}

/* Footer */
footer {
    background-color: #0d1f16;
    /* Very Dark Green, almost black */
    color: #F4F7F5;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col h4 {
    color: var(--color-secondary);
    /* Gold Headers */
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: #A3B5AE;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--color-secondary);
    /* Gold Link Hover */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: var(--spacing-md);
    text-align: center;
    font-size: 0.85rem;
    color: #5d6e66;
}