/* Modern Styling for Drill Track Portal */

/* Base Styles */
:root {
    --primary: #041433;
    --secondary: #69F0AE;
    --success: #00BFA5;
    --error: #F44336;
    --background: #F9FAFC;
    --text-primary: #141E29;
    --text-secondary: #455A64;
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

body {
    background-color: var(--background);
    font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
    color: var(--text-primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #a1a1a1;
    }

/* Animated Elements */
.animated {
    animation-duration: 1.5s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

/* Scroll-to-top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .scroll-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

/* Card enhancements */
.mud-card {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.mud-card-header {
    padding: 16px 24px;
}

.mud-card-content {
    padding: 24px;
}

/* Button improvements */
.mud-button-filled {
    text-transform: none;
    font-weight: 500;
    letter-spacing: 0.3px;
}

    .mud-button-filled.rounded-pill {
        border-radius: 50px !important;
        padding-left: 24px;
        padding-right: 24px;
    }

/* Navigation active state */
.mud-nav-link.active {
    background-color: rgba(105, 240, 174, 0.1);
    border-left: 3px solid var(--secondary);
}

/* Appbar shadow enhancement */
.mud-appbar {
    box-shadow: 0 2px 15px rgba(0,0,0,0.1) !important;
}

    /* Footer styling */
    .mud-appbar.mud-appbar-bottom {
        box-shadow: 0 -2px 10px rgba(0,0,0,0.05) !important;
    }


/*.hero-image {
    width: 100%;
    max-width: 350px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}*/

/* Add responsive tweaks */
@media (max-width: 600px) {
    .hero-section {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .hero-image {
        margin-top: 32px;
        max-width: 280px;
    }
}

/* Feature card hover effect */
.feature-card {
    transition: all 0.3s ease;
}

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

/* Advanced gradient backgrounds */
.gradient-bg-light {
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
}

.gradient-bg-primary {
    background: linear-gradient(135deg, #041433 0%, #172b5f 100%);
    color: white;
}

.gradient-bg-secondary {
    background: linear-gradient(135deg, #69F0AE 0%, #4eca8a 100%);
    color: var(--primary);
}
