/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    color: #EFF4F6;
}

/* Background with Overlay */
body {
    background-image: url('media/media/background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

/* Header and Logo */
header {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo img {
    height: 50px; /* Adjust as needed */
}

/* Navigation Menu */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #EFF4F6;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #39BAC4;
}

/* Coming Soon Message */
main {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 100px); /* Adjust based on header height */
}

.coming-soon {
    text-align: center;
}

.coming-soon h1 {
    font-size: 3rem;
    color: #FEFEFE;
    margin-bottom: 10px;
}

.coming-soon p {
    font-size: 1.5rem;
    color: #EFF4F6;
}