/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #2C2F33; /* Slick Grey */
    color: #f4f4f4;
}

/* Header and Navigation */
header {
    background-color: #23272A;
    padding: 1rem 0;
    border-bottom: 1px solid #000080; /* Navy Blue */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #B0C4DE; /* Light Steel Blue */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #f4f4f4;
    font-weight: bold;
    transition: text-shadow 0.3s ease;
}

nav ul li a:hover {
    text-shadow: 0 0 10px #C00030, 0 0 20px #C00030, 0 0 30px #C00030; /* Brighter Burgundy Glow */
}

/* Main Content */
main {
    width: 90%;
    margin: 2rem auto;
}

.hero {
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 2.5rem;
    color: #f4f4f4;
}

.hero-image {
    margin-top: 2rem;
    width: 90%;
    max-width: 600px;
    mask-image: radial-gradient(circle, black 50%, transparent 90%);
    animation: fadeIn 0.5s ease-in-out forwards;


}

@keyframes fadeIn {
    from {
        filter: blur(20px);
        opacity: 0;
    }
    to {
        filter: blur(0);
        opacity: 1;
    }
}

.hero-subtext {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    color: #f4f4f4;
}

.content {
    background-color: rgba(35, 39, 42, 0.25);
    padding: 2rem;
    border: 1px solid #000080; /* Navy Blue */
    border-radius: 5px;
    text-align: center;
}

.content a {
    color: #DAA520; /* GoldenRod */
}

/* Animated Wireframe Background for Home Page was here */


/* Specialties Grid for About Page */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.grid-item {
    text-align: center;
}

.grid-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #000080; /* Navy Blue */
    background-color: #333; /* Placeholder color */
}

.subtitle {
    margin-top: 1rem;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        margin-top: 1rem;
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    .specialties-grid {
        grid-template-columns: 1fr;
    }
}
