@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,500;0,700;1,500&display=swap');

/* Slider Button Fixes */
.hero-slider .slide-content .btn-premium {
    position: relative;
    z-index: 100;
    margin-top: 2rem;
    pointer-events: auto;
}

:root {
    /* Custom Logo Palette - Nature & Sustainability */
    
    /* Primary Colors */
    --color-primary: #1F7A4A;       /* Dark Green (Logo Text) - Headings */
    --color-primary-dark: #2E5E4E;  /* Petrol Green - Hover/Accent */
    
    /* Secondary & Button Colors */
    --color-secondary: #4F8F6A;     /* Moss Green - Buttons */
    --color-secondary-dark: #2E5E4E;
    
    /* Backgrounds */
    --bg-body: #F2F4F3;             /* Light Gray/White - Main Background */
    --bg-surface: #FFFFFF;          /* Pure White - Cards */
    --bg-surface-alt: #D8E6DB;      /* Light Sage - Section Backgrounds */
    --bg-accent: #EDE7DA;           /* Earth Beige - Optional accent */
    
    /* Text Colors */
    --text-primary: #2F2F2F;        /* Dark Gray - Body Text */
    --text-secondary: #6F6F6F;      /* Medium Gray - Subtitles */
    
    --border-subtle: #C8D0CC;       /* Cold Gray - Borders */
    
    --shadow-sm: 0 4px 10px rgba(31, 122, 74, 0.05);
    --shadow-md: 0 10px 30px rgba(31, 122, 74, 0.08);
    --shadow-lg: 0 20px 50px rgba(31, 122, 74, 0.12);
    
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 25px;
    
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', serif;
}

/* Base Styles - Bootstrap Overrides */
/* Base Styles - Bootstrap Overrides */
body {
    background-color: var(--bg-body);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.8; /* Increased for better readability */
    margin: 0;
    -webkit-font-smoothing: antialiased;
    padding-top: 90px; /* Increased offset for taller navbar */
    font-size: 1.05rem; /* Slightly larger base size */
}

/* Main Content Container - Full Width Layout */
.body-content {
    width: 100%;
    margin: 0;
    padding: 0;
    min-height: 80vh;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    color: var(--color-primary);
    margin-top: 0;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h1 { 
    font-size: 4rem; 
    letter-spacing: -0.03em; 
    margin-bottom: 2rem;
}

h2 { 
    font-size: 2.75rem; 
    font-weight: 600; 
    margin-bottom: 1.5rem;
}

h3 { 
    font-size: 2rem; 
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

h4 { font-size: 1.5rem; }

p { 
    margin-bottom: 1.75rem; 
    color: var(--text-secondary); 
    /* max-width: 75ch; Removed to allow full width content */
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: all 0.3s ease; 
}

/* Navbar - Glass Effect */
/* Modern Navbar */
/* Modern Navbar */
.glass-header {
    background: rgba(255, 255, 255, 1); /* Solid White by default for inner pages */
    border-bottom: 1px solid rgba(31, 122, 74, 0.05);
    padding: 1.25rem 0; /* Taller navbar */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.glass-header.navbar-home {
    background: #ffffff; /* Solid White to hide logo background */
    backdrop-filter: none;
}

.brand-logo img {
    mix-blend-mode: multiply; /* Ensures logo blends if we ever use transparency again */
}

/* Fixed broken selector */
.brand-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary) !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary) !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 1.25rem !important;
    position: relative;
    border-bottom: none;
    transition: color 0.3s ease;
}

.nav-link:hover { 
    color: var(--color-secondary) !important;
}

/* Cool Underline Effect for Nav Links */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--color-secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Premium Button - Clean & Lifted */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-secondary);
    color: white !important;
    padding: 1rem 2.25rem;
    border-radius: 50px; /* Pill shape for modern feel */
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy transition */
    box-shadow: 0 4px 10px rgba(79, 143, 106, 0.2);
    border: 1px solid transparent;
}

.btn-premium:hover {
    transform: translateY(-4px); /* Higher lift */
    background: var(--color-secondary-dark);
    box-shadow: 0 10px 25px rgba(79, 143, 106, 0.3);
}

.btn-premium.btn-white {
    background: white;
    color: var(--color-primary) !important;
}

.btn-premium.btn-white:hover {
    background: #f0f0f0;
    color: var(--color-primary-dark) !important;
}

.lang-btn {
    font-weight: 600;
    text-decoration: none;
    padding: 0.25rem 0.75rem;
    color: var(--text-secondary);
    border-radius: 4px;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.lang-btn:hover {
    background: var(--bg-surface-alt);
    color: var(--color-primary);
}


/* Slider Style Updates */
/* Cinematic Hero Slider */
.hero-slider-container {
    background: #0d1a12; /* Dark Green Base */
    position: relative;
    overflow: hidden;
    margin-top: -90px; /* Match new navbar height */
}

.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 0; /* Default low z-index */
    pointer-events: none; /* Prevent clicks on invisible slides */
    transition: opacity 1.8s ease-in-out, transform 8s ease-out; /* Slight zoom effect on active */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.05); /* Start slightly zoomed in */
}

.slide.active { 
    opacity: 1; 
    z-index: 10; /* Bring active slide to front */
    pointer-events: auto; /* Enable clicks */
    transform: scale(1); /* Zoom out effect */
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient Overlay for better text readability */
    background: linear-gradient(
        to bottom,
        rgba(31, 122, 74, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1000px; /* Increased max-width */
    padding: 2rem;
    width: 100%;
    margin: 0 auto; /* Center horizontally */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slide-title {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white !important;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) 0.5s forwards;
}

.slide-desc {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.95);
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) 0.8s forwards;
}

.slide-content .btn-premium {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) 1.1s forwards;
    background: white;
    color: var(--color-primary) !important;
    border: none;
}

.slide-content .btn-premium:hover {
    background: var(--bg-surface-alt);
    color: var(--color-primary-dark) !important;
    transform: translateY(-4px);
}

@media (max-width: 768px) {
    .slide-title { font-size: 3rem; }
    .hero-slider { height: 80vh; min-height: 500px; }
    .slide-desc { font-size: 1.1rem; }
}

/* Section Styling Enhancements */
/* Professional Section Styling */
.section-full {
    padding: 8rem 0; /* Huge vertical spacing for premium look */
    position: relative;
}

.bg-light { background-color: var(--bg-surface-alt); }
.bg-white { background-color: white; }

.section-title-center {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-title-center span {
    display: block;
    color: var(--color-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.section-title-center h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--color-primary);
    position: relative;
    display: inline-block;
    padding-bottom: 1.5rem;
}

.section-title-center h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-secondary);
}

/* Feature & Card Systems */
.icon-grid {
    gap: 2.5rem;
}

/* Stats */
.stat-item {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.stat-item h3 {
    font-size: 3.5rem; /* Reduced from 4rem to fit better*/
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    overflow-wrap: normal;
}

@media(max-width: 768px) {
    .stat-item h3 { font-size: 2.5rem; }
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    font-weight: 700;
}

/* Icon Box - Clean & Minimal */
.icon-box {
    background: white;
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(31, 122, 74, 0.1);
    border-color: rgba(31, 122, 74, 0.1);
}

.icon-circle {
    width: 90px;
    height: 90px;
    background: var(--bg-surface-alt);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
    box-shadow: inset 0 0 20px rgba(31, 122, 74, 0.05);
}

.icon-box:hover .icon-circle {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(31, 122, 74, 0.2);
}

.icon-box h4 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Product Preview Cards */
.product-preview-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    height: 100%;
    border: none;
    position: relative;
}

.product-preview-card:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    transform: translateY(-8px);
}

.product-img {
    height: 320px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--border-subtle);
    position: relative;
    overflow: hidden;
}

/* Glass Panel - Premium Container */
.glass-panel {
    background: white;
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: var(--radius-lg);
    padding: 3rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 5;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px; /* Top accent bar instead of side */
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    transition: opacity 0.3s;
}

.glass-panel:hover::before { opacity: 1; }

/* Feature & Card Systems */
/* Feature & Card Systems */
.stats-grid {
    /* Using GAP with Bootstrap cols breaks the grid unless using d-flex without row/cols */
    /* Falling back to standard Bootstrap gutters */
    --bs-gutter-x: 2rem;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

/* Ensure Row behaves like standard Bootstrap row */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col, [class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}

.col { padding: 0; }

/* Footer */
/* Footer */
/* Professional Footer */
.premium-footer {
    background: #111;
    color: #888;
    padding: 4rem 0 2rem; /* Reduced top padding */
    margin-top: 0;
    text-align: center;
    border-top: 5px solid var(--color-primary);
}

.premium-footer p { 
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.5px; 
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up { animation: fadeUp 0.8s ease-out forwards; }

.badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    background: var(--bg-surface-alt); /* Sage Green */
    color: var(--color-primary);
    font-weight: 700;
}

hr {
    border: none;
    height: 1px;
    background: var(--border-subtle);
    margin: 2rem 0;
}

/* Standardized Hero Section */
.hero-section {
    padding: 0 0 2rem 0;
    text-align: center !important;
    max-width: 900px;
    margin: 0 auto 3rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-section h1 {
    color: var(--color-primary);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
    text-align: center !important;
    width: 100%;
}

.hero-section p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    text-align: center !important;
}
