/*
    Underground Software Incorporated main website
    Copyright (C) 2024 Underground Software Incorporated

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.
*/
/* Global Styles */
body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Helvetica Neue', sans-serif;
}

a {
    color: #e74c3c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-weight: bold;
    width: 64px;
}

.navbar-nav .nav-link {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #f39c12;
}

/* Hero Section */
.hero {
    /* background: linear-gradient(45deg, #2c3e50, #34495e); */
    background: #171a1c;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero .btn-primary {
    background-color: #e74c3c;
    border-color: #e74c3c;
}

.hero .btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
}

.hero img {
    width: 100%;
}

/* Section Styles */
section {
    padding: 60px 0;
}

section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}

section p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Program Section - Cards */
.card {
    background-color: #2c3e50;
    border: none;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.card-text {
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: #1a1a1a;
}

footer p {
    font-size: 0.9rem;
    color: #ccc;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    section h2 {
        font-size: 2rem;
    }
}


section#program {
    background-color: #000000;
    background-image: url('/https/underground.software/mercury.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center; 
    color: #ffffff;
}
