/* ===================================================
   BradAlmonte.com.html Page (Dark Scarlet Palette Only)
   NOTE: Structure/layout preserved; colors swapped.
====================================================== */

.cards-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 2em;
    margin-bottom: 120px;
}
.section-card {
   width: 300px;
   background: #1a1a1a; /* was #fff */
   border: 1px solid #8B0000; /* was #ddd */
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4); /* slightly stronger on dark */
   transition: transform 0.3s, box-shadow 0.3s;
}
.section-card img {
   width: 100%;
    height: auto;
    border-bottom: 1px solid #8B0000; /* was #ddd */
}
.section-card h3 {
    margin: 0.5em;
    font-size: 1.2em;
    color: #f5f5f5;
}
.section-card p {
    margin: 0.5em;
    font-size: 0.9em;
    color: #cccccc; /* was #555 */
}
.section-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #8B0000; /* scarlet glow */
}
.section-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}
.coding-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #0d0d0d; /* added dark bg */
    color: #f5f5f5;      /* added light text */
}
.main-nav {
    background: #000; /* was #333 */
    color: #f5f5f5;    /* was #fff */
    padding: 1em;
    text-align: center;
}
.nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.nav a {
    color: #8B0000; /* was #fff */
    text-decoration: none;
}
header {
    text-align: center;
    padding: 2em 1em;
    background: #111; /* was #f4f4f4 */
    color: #f5f5f5;
}
.profile-image {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin-bottom: 1em;
}
.card {
    padding: 1.5em;
    margin: 1em;
    background: #1a1a1a; /* was #fff */
    border: 1px solid #8B0000; /* was #ddd */
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); /* stronger on dark */
}
footer {
    text-align: center;
    padding: 2em 1em;
    background: #000; /* was #333 */
    color: #f5f5f5;    /* was #fff */
}
footer a {
    color: #8B0000; /* was #fff */
    text-decoration: none;
    margin: 0 10px;
}
footer {
    position: fixed; /* Keeps the footer in a fixed position */
    bottom: 0;       /* Aligns it to the bottom of the viewport */
    left: 0;         /* Aligns it to the left of the viewport */
    width: 100%;     /* Ensures it spans the full width of the page */
    background: #000; /* was #333 */
    color: #f5f5f5;     /* Text color */
    text-align: center; /* Centers the text horizontally */
    padding: 1em;    /* Adds padding inside the footer */
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.6); /* stronger on dark */
}
form {
    margin: 1em auto;
    max-width: 400px;
}
form input, form textarea, form button {
    width: 100%;
    margin: 0.5em 0;
    padding: 0.8em;
    border: 1px solid #8B0000; /* was #ddd */
    border-radius: 5px;
    background: #0d0d0d; /* was default */
    color: #f5f5f5;
}
form button {
    background: #8B0000; /* was #333 */
    color: #fff;        /* was #fff */
    border: none;
    cursor: pointer;
}
form button:hover {
    background: #b30000; /* was #555 */
}

/* ===================================================
   BA-Aboutme.html page
====================================================== */
/* About Page Styles */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    padding: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.about-photo img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(139, 0, 0, 0.6); /* tinted for theme */
}
.about-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #f5f5f5; /* was #333 */
}
.about-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #cccccc; /* was #555 */
    margin-bottom: 1rem;
}
.about-text h2 {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    color: #8B0000; /* was #444 */
}
.about-text ul {
    list-style: none;
    padding: 0;
}
.about-text ul li {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: #f5f5f5;
}
.about-page {
    background-color: #0d0d0d; /* was #f5f5f5 */
    color: #f5f5f5; /* was #333 */
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
}
.about-footer{
    text-align: center;
    padding: 1rem;
    background-color: #000; /* was #333 */
    color: #f5f5f5; /* was #fff */
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* ===================================================
   BA-coding.html page
====================================================== */
/* (no color-only changes specified in original) */

/* ===================================================
   BA-Contactpage.html page
====================================================== */
/* Contact Page Theme */
body.contact-page {
    background-color: #0d0d0d; /* was #f5f0e6 */
    color: #f5f5f5; /* was #4a4a4a */
}
body.contact-page h1, 
body.contact-page h2, 
body.contact-page h3 {
    color: #8B0000; /* was #3d2b1f */
}
body.contact-page p, 
body.contact-page label {
    color: #cccccc; /* was #4a4a4a */
}
body.contact-page input, 
body.contact-page textarea, 
body.contact-page button {
    background-color: #1a1a1a; /* was #f9f4ec */
    border: 1px solid #8B0000; /* was #d1c4b2 */
    color: #f5f5f5; /* was #3d2b1f */
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
}
body.contact-page input:focus, 
body.contact-page textarea:focus {
    outline: none;
    border-color: #b30000; /* was #a89f91 */
    box-shadow: 0 0 5px #b30000; /* was #a89f91 */
}
body.contact-page button {
    background-color: #8B0000; /* was #3d2b1f */
    color: #f5f5f5; /* was #f5f0e6 */
    cursor: pointer;
    transition: background-color 0.3s ease;
}
body.contact-page button:hover {
    background-color: #b30000; /* was #2e2216 */
}
/* Form Container Styling */
body.contact-page .form-container {
    background-color: #1a1a1a; /* was #fffdfa */
    border: 1px solid #8B0000; /* was #d1c4b2 */
    border-radius: 8px;
    padding: 20px;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6); /* stronger on dark */
}

/* ===================================================
   BA-finance.html page
====================================================== */
/* (no unique color rules in original) */

/* ===================================================
   BA-fitness.html page
====================================================== */
/* (no unique color rules in original) */

/* ===================================================
   BA-legal.html Page
====================================================== */
/* General Legal Page Styling */
body.legal-page {
    background-color: #0d0d0d; /* was #e8e2d3 */
    color: #f5f5f5; /* was #4a4a4a */
    font-family: 'Georgia', serif; /* unchanged */
}  
/* Headers */
h1, h2, h3 {
    color: #8B0000; /* was #3d2b1f */
    border-bottom: 2px solid #b30000; /* was #a27b5c */
}  
/* Links */
a {
    color: #8B0000; /* was #7f5539 */
    text-decoration: none;
}  
a:hover {
    color: #b30000; /* was #9c6644 */
}  
/* Center PDF object */
object {
    margin: 20px auto;
    display: block;
    background: #1a1a1a; /* was #e8e2d3 */
    border: 2px solid #8B0000; /* was #a27b5c */
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6); /* was 0.1 */
}  
/* Footer */
footer {
    background-color: #000; /* was #4a4a4a */
    color: #fff; /* unchanged */
    text-align: center;
    padding: 10px;
}
body.legal-page h1, body.legal-page h2, body.legal-page h3 {
    color: #8B0000; /* was #3d2b1f */
}
body.legal-page p, body.legal-page li {
    color: #e0e0e0; /* was #4a4a4a */
}
body.legal-page p {
    color: #e0e0e0 !important; /* keep specificity */
}
.legal-links {
    list-style-type: none;
    padding: 0;
    margin: 1em 0;
}
.legal-links li {
    margin: 0.5em 0;
}
.legal-links a {
    text-decoration: none;
    color: #8B0000; /* was #007BFF */
}
.legal-links a:hover {
    text-decoration: underline;
    color: #b30000; /* was #0056b3 */
}
.pdf-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    height: 100vh; /* Optional: Makes the container take up the full viewport height */
}      
object {
    border: 1px solid #8B0000; /* was #ccc */
}
      
/* ===================================================
   BA-music.html page
====================================================== */
/* (no unique color rules in original) */

/* ===================================================
   BA-Resume.html page
====================================================== */
/* Resume Page Styles */
/* Enhanced Resume Page Styles */
.resume-page {
    font-family: 'Poppins', sans-serif;
    background: #0d0d0d; /* was #f0f0f0 */
    color: #f5f5f5;      /* was #333 */
    padding: 30px;
    line-height: 1.8;
}
/* Header */
.resume-page h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B0000; /* was #2c3e50 */
    margin-bottom: 20px;
}
.resume-page h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #b30000; /* was #34495e */
    border-left: 5px solid #8B0000; /* was #3498db */
    padding-left: 15px;
    margin-top: 40px;
}
/* Sections */
.resume-section {
    background: #1a1a1a; /* was #ffffff */
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5); /* stronger on dark */
    border: 1px solid #8B0000;
}
.resume-section ul {
    list-style: disc;
    padding-left: 40px;
}
.resume-section ul li {
    margin-bottom: 10px;
    color: #cccccc;
}
/* Links */
.resume-page a {
    color: #8B0000; /* was #3498db */
    text-decoration: none;
    font-weight: bold;
}
.resume-page a:hover {
    color: #b30000; /* was #1abc9c */
}
/* Download Button */
.download-btn {
    display: inline-block;
    margin: 70px auto;
    padding: 12px 25px;
    font-size: 1rem;
    color: #fff; /* was black */
    background-color: #8B0000; /* was #3498db */
    border: none;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}
.download-btn {
    color: #fff !important; /* was black */
}
.download-btn:hover {
    background-color: #b30000; /* was #1abc9c */
    transform: translateY(-2px);
}
/* Responsive Design */
@media (max-width: 768px) {
.resume-section {
    padding: 15px;
}
.resume-page h1 {
    font-size: 2rem;
}
.resume-page h2 {
    font-size: 1.5rem;
}
.download-btn {
    font-size: 0.9rem;
}
}

