@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #2c3e50;
    /* Dark Slate Blue/Grey - One Tone base */
    --secondary-color: #34495e;
    --accent-color: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

/* Navbar */
.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 700;
    letter-spacing: -1px;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background-color: var(--white);
    /* Solid background */
    border-radius: 0 0 50px 50px;
    margin-bottom: 50px;
}

.hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Form Styles */
.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background: white;
    padding: 50px 0;
    margin-top: 80px;
    border-top: 1px solid #eee;
}

.admin-link {
    color: #eee;
    font-size: 0.8rem;
    text-decoration: none;
}

.admin-link:hover {
    color: #ccc;
}

/* Custom Red Radio Buttons */
.form-check-input[type="radio"]:checked {
    background-color: #dc3545;
    border-color: #dc3545;
}

.form-check-input[type="radio"]:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

/* Override Bootstrap's btn-primary to match our theme */
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-primary:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}