/* Custom Design System for Instant Pharmacy */

:root {
    --primary-color: #09656b; /* Teal */
    --primary-dark: #074f56;
    --secondary-color: #e0f2f1; /* Light Teal Background */
    --accent-color: #ff6b6b; /* Coral for alerts/badges */
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --white: #ffffff;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
}

body {
    font-family: var(--font-body);
    background-color: #f8f9fa;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline-primary:hover .text-primary, .btn-outline-primary:hover h6, .btn-outline-primary:hover small{
    color: #fff
}

.step-indicator.active .step-number{
    background-color: #09656b  ;
}

/* Cards */
.card {
    border: none;
    border-radius: 1rem;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    background-color: var(--white);
    border-bottom: 1px solid #f0f0f0;
    padding: 1.5rem;
    font-weight: 600;
}

/* Forms */
.form-control {
    border-radius: 0.5rem;
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    background-color: #fcfcfc;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.15);
    border-color: var(--primary-color);
    background-color: var(--white);
}

.form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ffffff 100%);
    padding: 4rem 0;
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 3rem;
}

/* Footer */
footer {
    background-color: var(--white);
    padding: 3rem 0;
    margin-top: auto;
    border-top: 1px solid #eee;
}

/* Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary-soft {
    background-color: var(--secondary-color);
}

.shadow-hover:hover {
    box-shadow: var(--shadow-lg) !important;
}
