/* main.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
    url('https://images.unsplash.com/photo-1550547660-d9450f859349');
    background-size: cover;
}

/* HEADER */
.header-box {
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-bottom: 4px solid #ff6600;
}
.logo { height: 100px; }
.header-title { font-size: 24px; font-weight: bold; color: #ff6600; }

.container {
    text-align: center;
    padding: 20px;
}

.navbar {
    background-color: #ff6600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 12px 0;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 8px 18px;
    border-radius: 6px;
}

.navbar a.active {
    background-color: #007bff;
    color: white;
}