/* Background and body styles remain the same */
html {
    background: url("images/body-bg.png") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 100%;
    min-height: 100%;
    background-attachment: scroll;
}

html body {
    background-color: transparent;
}

/* Header Container Styles */
.header-container {
    padding: 20px 10px; /* Make the header more compact */
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid #000000;
    margin-bottom: 20px;
}

.main-logo {
    max-width: 3000px; /* Keep the logo at an appropriate size */
    height: auto;
    margin-bottom: 10px;
}

.main-title {
    font-size: 32px; /* Reduced font size */
    font-weight: bold;
    color: #0a2e62;
    margin-bottom: 5px;
}

.sub-title {
    font-size: 18px; /* Reduce subtitle size for better fit */
    color: #476790;
}

@media all and (max-width: 768px) {
    .main-title {
        font-size: 24px; /* Further reduce title size for mobile screens */
    }
    .sub-title {
        font-size: 16px; /* Further reduce subtitle size for mobile screens */
    }
    .main-logo {
        max-width: 200px; /* Smaller logo size for mobile */
    }
}

/* Main Container Styles */
html body div.container {
    position: relative;
    margin-top: 20px; /* Reduce spacing to make it more compact */
}

@media all and (max-width: 768px) {
    html body div.container {
        margin-top: 10px;
    }
}

/* Background and text styles for each location */
html body div.container div[class*="col-"] {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 20px; /* Compact padding */
    color: #0a2e62;
    margin-top: 10px;
}

@media all and (max-width: 768px) {
    html body div.container div[class*="col-"] {
        margin-top: 20px;
    }
}

html body div.container div[class*="col-"] p.location {
    font-size: 24px; /* Reduced font size for locations */
    text-transform: uppercase;
    font-weight: bold;
}

html body div.container div[class*="col-"] p.address {
    font-size: 18px; /* Slightly smaller text for addresses */
    color: black;
}

html body div.container div[class*="col-"] p.enter {
    margin-top: 15px; /* Decrease the space above the button */
}

html body div.container div[class*="col-"] p.enter a {
    background-color: #476790;
    color: #ffffff;
    padding: 8px 25px; /* Reduced button padding */
    border-radius: 4px;
    font-size: 18px; /* Slightly smaller button text */
    text-decoration: none;
}

html body div.container div[class*="col-"] p.enter a:hover {
    background-color: #61bde6;
}
