/* Custom Styles */

:root {
    --primary-color: #e63946;
    --secondary-color: #ff6b6b;
    --light-color: #fff5f5;
    --dark-color: #2b2d42;
    --accent-color: #ff9e9e;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    background-color: var(--light-color);
}


/* Hero Section */

.hero-section {
    padding-top: 100px;
    background: linear-gradient(135deg, #fff 0%, var(--light-color) 100%);
}


/* Navigation */

.navbar {
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(230, 57, 70, 0.1);
}

.navbar-brand {
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--dark-color) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}


/* Buttons */

.btn-danger {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: #d62839;
    border-color: #d62839;
    transform: translateY(-2px);
}

.btn-outline-danger {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline-danger:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}


/* Cards */

.card {
    transition: all 0.3s ease;
    background-color: white;
    border: 1px solid rgba(230, 57, 70, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.1) !important;
}


/* Features Icons */

.fas {
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.card:hover .fas {
    transform: scale(1.1);
    color: var(--secondary-color);
}


/* How It Works Section */

.rounded-circle {
    background-color: var(--primary-color) !important;
}


/* Download Section */

#download {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}


/* Footer */

footer {
    background-color: var(--dark-color) !important;
}


/* Responsive Adjustments */

@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px;
        text-align: center;
    }
    .hero-section img {
        margin-top: 2rem;
    }
    .d-flex {
        justify-content: center;
    }
}


/* Smooth Scrolling */

html {
    scroll-behavior: smooth;
}


/* Custom Animations */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section,
.card,
#download {
    animation: fadeIn 1s ease-out;
}