body {
    font-family: Arial, sans-serif;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    min-height: 100vh;
    position: relative;
}

.header-bar {
    background-color: rgba(68, 68, 68, 0.95);
    width: 100%;
    padding: 15px 20px;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.info h1 {
    margin: 0 0 5px 0;
    color: #ffffff;
    font-size: 1.5em;
}

.info .title {
    color: #cccccc;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.info p {
    margin: 5px 10px;
    color: #ffffff;
    font-size: 0.85em;
    display: inline-block;
}

.map-container {
    position: absolute;
    bottom: 20px;
    left: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
    width: 100%;
    max-width: 300px;
}

iframe {
    width: 100%;
    height: 200px;
    border: 0;
    display: block;
}

.footer {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.footer img {
    width: 25vw;
    height: auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        display: block; 
        /* Adds space at the bottom so text doesn't overlap the map or footer */
        padding-bottom: 1vw; 
    }

    .header-bar {
        padding: 20px 10px;
    }

    .info p {
        display: block; 
        margin: 10px 0;
    }

    .map-container {
        position: absolute;
        bottom: 30vw; /* Pushes the map just above the footer image */
        left: 50%;
        transform: translateX(-50%); /* Perfectly centers the element */
        width: 60%;
	max-height: 15%;
        max-width: 400px;
        margin: 0;
    }

    .footer {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    .footer img {
        width: 100vw; 
        max-width: 100%;
        height: auto;
        display: block;
    }
}
