/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background-image: url('just people background.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #ffffff; /* White text */
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    position: relative;
    font-weight: 500;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('just people background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0);
    z-index: -1;
}

/* Typography */
.site-title {
    font-family: 'Courier New', monospace;
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
    text-transform: lowercase;
    letter-spacing: 0.15em;
}

.name-line {
    display: block;
    margin-bottom: 0.1rem;
}

.section-title {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
    margin: 0 0 0.3rem 0;
    text-transform: lowercase;
    letter-spacing: 0.05em;
}

.content-title {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
    margin: 0;
    text-transform: lowercase;
    letter-spacing: 0.05em;
}

.content-description {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    color: #666666;
    max-width: 500px;
    margin: 0 auto;
}

/* Logo Header */
.logo-header {
    position: relative;
    text-align: center;
    margin-bottom: 0.5rem;
    z-index: 1000;
}

.logo {
    width: 200px;
    height: auto;
    opacity: 1;
    background: transparent;
}

/* Layout Sections */
.hero-section {
    padding: 0.25rem 2rem 0.5rem 2rem;
    text-align: center;
}

.about-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem 2rem;
    text-align: center;
}

.trained-section, .next-stop-section {
    margin-bottom: 1rem;
}

.experience-list {
    list-style: none;
    padding: 0;
}

.experience-list li {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.2rem;
    position: relative;
    padding-left: 0;
    text-align: center;
}

.restaurant-link {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.restaurant-link:hover {
    border-bottom: 1px solid #000000;
    cursor: pointer;
}

.categories-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 3rem 2rem;
    flex-wrap: wrap;
}

.category-box {
    border: 1px solid #ffffff;
    padding: 0.5rem 1rem;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
}

.category-box:hover {
    opacity: 0.7;
}

.category-link {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: lowercase;
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    letter-spacing: 0.05em;
}

.content-section {
    padding: 1rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}


/* Responsive Design */
@media (max-width: 768px) {
    .site-title {
        font-size: 2.5rem;
    }
    
    .categories-section {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-section {
        padding: 3rem 1rem 2rem 1rem;
    }
    
    .about-section {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 2rem;
    }
    
    .hero-section, .about-section, .categories-section, .content-section {
        padding: 1.5rem 1rem;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.category-link:focus,
.category-link:focus-visible {
    outline: 2px solid #666;
    outline-offset: 2px;
}
