/* Global Styles */
body {
    background-color: #000000; /* Black background */
    color: #FFFFFF; /* White text */
    font-family: 'Source Sans Pro', sans-serif;
}

/* Headings */
h1, .title-large { font-size: 32px; font-weight: 700; } /* Bold */
h2, .title-medium { font-size: 24px; font-weight: 700; } /* Bold */
h3, .title-small { font-size: 16px; font-weight: 700; } /* Bold */

/* Body Text */
p, .body-regular { font-size: 16px; font-weight: 400; } /* Regular */
.body-light { font-size: 16px; font-weight: 300; } /* Light */

/* Buttons */
.btn-primary {
    background-color: #FF5959;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #E04A4A; /* Slightly darker red */
}

/* Secondary Elements */
.text-secondary {
    color: #272B45 !important; /* Dark blue */
}

.bg-secondary {
    background-color: #272B45 !important;
}

/* Custom Navbar */
.navbar {
    background-color: #000000; /* Matches site background */
}

.navbar .nav-link {
    color: #FFFFFF !important; /* White nav links */
    font-size: 16px;
}

.navbar .nav-link:hover {
    color: #FF5959 !important; /* Accent color hover */
}
