/* Modern Overrides for Cleaner Look */

/* Typography */
body {
    font-family: 'Roboto', sans-serif;
    color: #4a4a4a; /* Softer black for better readability */
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #12bbad; /* Primary Brand Color */
    letter-spacing: -0.5px;
}

h1 {
    font-size: 3rem;
}

p.lead {
    font-weight: 400;
    color: #6c757d;
}

/* Layout Utilities */
.section-padding {
    padding: 80px 0;
}

.bg-light-gray {
    background-color: #f8f9fa;
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 1rem;
}

.navbar-brand {
    font-weight: 700;
    color: #151515 !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    margin-right: 10px;
}

.nav-link {
    font-weight: 500;
    color: #555 !important;
    margin-left: 15px;
}

.nav-link:hover {
    color: #12bbad !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    position: relative;
}

/* Buttons */
.btn {
    border-radius: 50px; /* Modern rounded pill shape */
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-primary {
    background-color: #12bbad;
    border-color: #12bbad;
}

.btn-primary:hover {
    background-color: #0ea396;
    border-color: #0ea396;
}

.btn-outline-primary {
    color: #12bbad;
    border-color: #12bbad;
}

.btn-outline-primary:hover {
    background-color: #12bbad;
    color: white;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: transparent;
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: #12bbad;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #333;
}

/* Footer */
footer {
    background-color: #151515;
    color: white;
    padding: 40px 0;
}

footer a {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0 10px;
    text-decoration: none;
}

footer a:hover {
    color: #12bbad;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    .hero-img {
        margin-top: 40px;
        max-width: 80%;
    }
}
