:root {
    --slate-gray: #708090;
    --electric-blue: #373e98;
    --light-gray: #D3D3D3;
    --black: #000000;
}

/* Add keyframes for fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Didact Gothic', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: transparent;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://cdn.glitch.global/f25d643f-7086-4b92-915d-19ec078331f3/2.jpg?v=1733806668195');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(3px);
    z-index: -2;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 5%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.company-name {
    font-family: 'Poppins', sans-serif;
    color: var(--light-gray);
    font-size: 1.3rem;
    font-weight: 600;
}

.nav-link {
    color: var(--light-gray);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.nav-link:hover {
    color: var(--electric-blue);
    background-color: var(--light-gray);
}

/* Hero Section Styles */
.hero {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 30vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.content-wrapper {
    position: relative;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards 0.5s; /* 0.5s delay after h1 */
}

/* Footer Styles */
footer {
    position: relative;
    padding: 0.75rem;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.footer-content {
    text-align: center;
    color: var(--light-gray);
}

.footer-content p {
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        padding-top: 20vh;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem 5%;
    }
    
    .company-name {
        font-size: 1.2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero {
        padding-top: 15vh;
    }
}