/* Custom styles for Materialize-based template */

:root {
    --primary: #f2a900;
    --secondary: #0d1117;
    --accent: #00bfff;
    --light: #f5f5f7;
    --dark: #0a0a0a;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--secondary);
    color: var(--light);
}

/* Header */
nav {
    background-color: #0d1117 !important;
}

.brand-logo {
    font-weight: 700;
}

/* Hero Section */
.section-hero {
    background: linear-gradient(135deg, #0d1117 0%, #1a1f25 100%);
    padding: 150px 0 100px;
}

.section-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.section-hero h2 {
    font-size: 2rem;
    margin: 20px 0;
}

/* Features Section */
.section-features {
    background-color: #121212;
    padding: 100px 0;
}

.section-features .card {
    background-color: #1e1e1e !important;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-features .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(242, 169, 0, 0.3);
}

/* Stats Section */
.section-stats {
    background: linear-gradient(135deg, #1a1f25 0%, #0d1117 100%);
    padding: 80px 0;
}

.section-stats .material-icons {
    margin-bottom: 20px;
}

/* How It Works */
.section-how-it-works {
    background-color: #0d1117;
    padding: 100px 0;
}

.circle {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 30px;
    transition: transform 0.3s ease;
}

.circle:hover {
    transform: scale(1.1);
}

/* CTA Section */
.section-cta {
    background: linear-gradient(135deg, #f2a900 0%, #ff8c00 100%) !important;
    padding: 100px 0;
    color: var(--dark) !important;
}

.section-cta h2 {
    color: var(--dark) !important;
}

.section-cta p {
    color: var(--dark) !important;
}

.section-cta .btn-large {
    background-color: #0d1117 !important;
    color: var(--light) !important;
    font-weight: 700;
    transition: all 0.3s ease;
}

.section-cta .btn-large:hover {
    background-color: #000 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
.page-footer {
    background-color: #000 !important;
}

.page-footer h3 {
    font-weight: 700;
}

.page-footer a:hover {
    color: var(--primary) !important;
}

.footer-copyright {
    background-color: #0d1117 !important;
}

/* Buttons */
.btn-large {
    border-radius: 30px;
    font-weight: 700;
}

.btn-outline {
    background-color: transparent !important;
    border: 2px solid var(--primary);
}

/* Responsive Adjustments */
@media only screen and (max-width: 992px) {
    .section-hero {
        text-align: center;
        padding: 180px 0 100px;
    }
    
    .section-hero h1 {
        font-size: 2.5rem;
    }
    
    .section-hero h2 {
        font-size: 1.5rem;
    }
    
    .circle {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 1.5rem;
    }
}

/* Material Icons */
.material-icons {
    vertical-align: middle;
}