/* Basic Reset */
html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('high_res_bavarian_sea_bistro_flag_with_bavarian_background.png') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
}

/* Overlay to darken the background image for better text visibility */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust transparency as needed */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container for the content */
.container {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1); /* Translucent background */
    backdrop-filter: blur(5px);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Logo styling */
.logo {
    width: 180px; /* Larger logo for more prominence */
    height: auto;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05); /* Slight scale on hover for interaction */
}

/* Main headline */
h1 {
    font-size: 32px; /* Larger text for headline */
    color: #80DEEA; /* Lighter blue for headline */
    margin-bottom: 10px;
}

/* Subtext */
p {
    font-size: 18px;
    color: #ADEFFF; /* Even lighter blue for subtext */
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Contact button styling */
.contact-button {
    padding: 12px 24px;
    background-color: #0D47A1; /* Accent 3 */
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #0098D4; /* Change color on hover */
}

/* Commented out for social links
.social-links a {
    margin: 0 10px;
    display: inline-block;
}

.social-links img {
    width: 40px;
    height: auto;
    filter: grayscale(100%); makes the icons white, remove if using colored icons
}

.social-links a:hover img {
    filter: none; brings back icon color on hover
}
*/
