/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
    --primary-color: #1a73e8;
    --heading-color: #202124;
    --text-color: #5f6368;
    --background-color: #ffffff;
    --light-gray-bg: #f8f9fa;
    --border-color: #dadce0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color) !important;
    color: var(--text-color) !important;
}

section {
    padding: 100px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--heading-color) !important;
}

p {
    color: var(--text-color) !important;
}

a {
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border: none !important;
    color: #fff !important;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-outline-primary {
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: #f1f3f4;
}

/* Hero Section */
.hero-minimalist {
    padding: 120px 0;
}

.hero-minimalist h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
}

.hero-minimalist .lead {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features-minimalist {
    background-color: var(--light-gray-bg);
    padding: 100px 0;
}

.feature-card-minimalist {
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-icon-minimalist {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background-color: #e8f0fe;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.feature-card-minimalist h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* CTA Section */
.cta-minimalist {
    background-color: var(--primary-color);
    padding: 80px 0;
}

.cta-minimalist h2 {
    color: #fff !important;
    margin-bottom: 30px;
}

.cta-minimalist .btn-primary {
    background-color: #fff !important;
    color: var(--primary-color) !important;
}

.template-homepage #main-body {
    min-height: 0 !important;
    padding: 0 !important;
}

.template-homepage .main-content {
    min-height: 0 !important;
    margin-bottom: 0 !important;
}

footer#footer {
    background-color: #000 !important;
    color: #fff !important;
}

footer#footer h5 {
    color: #fff !important;
}

footer#footer a {
    color: #fff !important;
}

footer#footer a:hover {
    color: var(--primary-color) !important;
}
