body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(to bottom, #dbeeff 0%, #ffffff 100%);
    color: #222;
}

.header {
    background-color: #3399ff;
    color: white;
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}

.header h1 {
    font-size: 2.5rem;
    margin: 0;
}

.header .location {
    font-size: 1.2rem;
    margin: 0.3rem 0;
}

.header .tagline {
    font-size: 1rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.hamburger-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.menu-icon {
    display: block;
    cursor: pointer;
}

.menu-icon span {
    background: white;
    display: block;
    height: 4px;
    margin: 5px 0;
    width: 25px;
    border-radius: 2px;
}

#menu-toggle {
    display: none;
}

.menu {
    display: none;
    position: absolute;
    background: #ffffffee;
    right: 0;
    top: 3rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#menu-toggle:checked+.menu-icon+.menu {
    display: block;
}

.menu a {
    text-decoration: none;
    color: #333;
    display: block;
    margin: 0.5rem 0;
    font-weight: bold;
}

.cloud-container {
    width: 100%;
    overflow: hidden;
    margin-top: -1px;
}

.clouds {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer {
    background: #3399ff;
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}