﻿:root {
    --primary-color: #2E7D32; /* Forest Green for wood/nature */
    --secondary-color: #F57C00; /* Warm Orange for CTA */
    --dark-color: #1F2937;
    --light-bg: #F9FAFB;
    /* Login */
    --forest-dark: #1B3022;
    --forest-green: #2D5A27;
    --wood-oak: #BC8A5F;
    --soft-cream: #FAF9F6;
    --text-main: #2C3E50;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color);
    transition: color 0.3s;
}

    .nav-link:hover {
        color: var(--primary-color);
    }

/* Buttons */
.btn-cta {
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
}

    .btn-cta:hover {
        background-color: #E65100;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(245, 124, 0, 0.4);
    }

.btn-outline-primary-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s;
}

    .btn-outline-primary-custom:hover {
        background-color: var(--primary-color);
        color: white;
    }

/* Hero Carousel */
.hero-carousel .carousel-item {
    height: 100vh;
    min-height: 600px;
    background-color: #000;
}

    .hero-carousel .carousel-item img {
        object-fit: cover;
        height: 100%;
        width: 100%;
        opacity: 0.6; /* Dark overlay for text readability */
    }

.hero-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

    .hero-caption h1 {
        color: white;
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 20px;
        text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    }

    .hero-caption p {
        color: #E5E7EB;
        font-size: 1.25rem;
        margin-bottom: 30px;
        text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    }

/* Typography & Utilities */
.section-title {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 3rem;
}

.text-primary-custom {
    color: var(--primary-color);
}

/* Problem Section */
.problem-section {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.problem-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 100%;
    border: 1px solid #F3F4F6;
    transition: transform 0.3s;
}

    .problem-card:hover {
        transform: translateY(-5px);
    }

.problem-icon {
    font-size: 2.5rem;
    color: #EF4444; /* Red for warning */
    margin-bottom: 20px;
}

/* Solution / Mockup Section */
.solution-section {
    padding: 100px 0;
}

.mockup-container {
    position: relative;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    overflow: hidden;
    border: 1px solid #E5E7EB;
}

    .mockup-container img {
        width: 100%;
        height: auto;
        display: block;
    }

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.feature-list i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-right: 15px;
    margin-top: 2px;
}

/* Benefits Grid */
.benefits-section {
    background-color: var(--primary-color);
    color: white;
    padding: 100px 0;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    color: white;
}

/* Target Audience & Bottom CTA */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F9FAFB 0%, #E5E7EB 100%);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

    footer a {
        color: #9CA3AF;
        text-decoration: none;
        transition: color 0.3s;
    }

        footer a:hover {
            color: white;
        }

@media (max-width: 768px) {
    .hero-caption h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .mockup-container {
        margin-top: 30px;
    }
}

/*** ------------  Login page -------------------------------------------------**/
.body-login {
    font-family: 'Lexend', sans-serif;
    color: var(--text-main);
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 1000px;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    display: flex;
}

/* Left side - Decorative */
.login-sidebar {
    background: linear-gradient(rgba(27, 48, 34, 0.85), rgba(27, 48, 34, 0.85)), url('https://images.unsplash.com/photo-1533090161767-e6ffed986c88?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    width: 45%;
    padding: 50px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .login-sidebar h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

/* Right side - Form */
.login-form-section {
    width: 55%;
    padding: 60px;
    background: white;
}

.brand-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--forest-green);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 40px;
}

.form-label {
    font-weight: 500;
    color: var(--forest-dark);
    margin-bottom: 8px;
}

.form-control {
    border-radius: 12px;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    background-color: #fcfcfc;
    transition: 0.3s;
}

    .form-control:focus {
        box-shadow: 0 0 0 4px rgba(45, 90, 39, 0.1);
        border-color: var(--forest-green);
        background-color: white;
    }

.btn-login {
    background: var(--forest-green);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    width: 100%;
    margin-top: 20px;
    transition: 0.3s;
}

    .btn-login:hover {
        background: var(--wood-oak);
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(188, 138, 95, 0.2);
        color: white;
    }

.btn-outline-custom {
    border: 1px solid var(--forest-green);
    color: var(--forest-green);
    background: transparent;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    width: 100%;
    margin-top: 15px;
    transition: 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
    cursor: pointer;
}

    .btn-outline-custom:hover {
        background: rgba(45, 90, 39, 0.05);
        color: var(--forest-dark);
    }

/* Modal Custom Styling */
.modal-content {
    border-radius: 25px;
    border: none;
    overflow: hidden;
}

.modal-header {
    background-color: var(--forest-dark);
    color: white;
    border-bottom: none;
    padding: 25px 30px;
}

    .modal-header .btn-close {
        filter: invert(1);
    }

.modal-body {
    padding: 30px;
    background-color: var(--soft-cream);
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.input-group-text {
    background-color: #fcfcfc;
    border-radius: 12px 0 0 12px;
    border: 1px solid #e0e0e0;
    color: #888;
}

.form-control-with-icon {
    border-left: none;
    border-radius: 0 12px 12px 0 !important;
}

/* Responsive */
@media (max-width: 991px) {
    .login-sidebar {
        display: none;
    }

    .login-form-section {
        width: 100%;
        padding: 40px;
    }

    .login-container {
        max-width: 500px;
    }
}

@media (max-width: 576px) {
    .login-form-section {
        padding: 30px 20px;
    }

    .brand-logo {
        margin-bottom: 30px;
    }
}