/*
 * Custom Styles for PentWeb
 * Author: Your Name/Company
 */

/* --- General Styling & Theme --- */

body {
    font-family: 'Roboto', sans-serif;
    padding-top: 70px; /* Adjust for fixed navbar */
}

.bg-dark-blue {
    background-color: #0a192f !important;
}

.bg-light-dark {
    background-color: #112240 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #ffffff;
}

.text-primary {
    color: #64ffda !important;
}

.text-muted {
    color: rgba(255, 255, 255, 0.75) !important;
}

.btn-primary {
    background-color: #64ffda;
    border-color: #64ffda;
    color: #0a192f;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}
li {
    color: #52d1b8 !important;
}

.btn-primary:hover {
    background-color: #52d1b8;
    border-color: #52d1b8;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(100, 255, 218, 0.2);
}

.btn-outline-primary {
    color: #64ffda;
    border-color: #64ffda;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.btn-outline-primary:hover {
    background-color: #64ffda;
    color: #0a192f;
}


/* --- Navbar --- */
.navbar-brand {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.5rem;
}

.nav-link {
    font-family: 'Roboto Mono', monospace;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: #64ffda !important;
}


/* --- Sections & Cards --- */
.section-padding {
    padding: 80px 0;
}

.card {
    background-color: #112240;
    border: 1px solid #233554;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* Ensures content respects the border-radius */
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
}

.card-icon {
    font-size: 3rem;
    color: #64ffda;
    margin-bottom: 1rem;
}
.card-title {
    font-size: 1.5rem;
    color: #ffffff;
}


/* --- Animations --- */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

.slide-in-up {
    animation: slideInUp 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
