* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url('../assets/img/DSCF7528.JPG') no-repeat center center fixed;
    background-color: black;
    display: flex;
    align-items: center;
    color: white;
    padding: 0 !important;
    background-size: cover; /* Ensure the background image covers the viewport */
    height: auto; /* Allow the height to be determined by content */
    position: relative;
    background-attachment: scroll; 
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.336) 12%, rgba(255, 255, 255, 0) 25%); */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.336) 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.8; /* Adjust for desired darkness */
    transition: opacity 0.5s ease; /* Transition effect */
    z-index: 1; /* Make sure the overlay is above the background but below content */
}

.container {
    width: 100%;
    position: relative; /* Position relative to allow layering */
    z-index: 2; /* Bring content above the overlay */
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container h2,
.container p {
    color: white !important;
}

.landing-page header {
    position: relative; /* Position relative to allow layering */
    z-index: 2; /* Bring content above the overlay */
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
    flex-direction: row;
}

.landing-page header h1 {
    color: white !important;
    font-style: italic;
    font-weight: 300;
    font-size: 2rem;
}

.login-button {
    background-color: white;
    /* color: white; */
    padding: 0.25rem 0.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.login-button:hover {
    background-color: var(--teal-light-shade-5);
}

.content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-title {
    font-size: 3rem;
    font-weight: 200;
    margin: 20px 0;
}

.highlight {
    color: var(--teal-light-shade-5);
    font-weight: 400;
    text-decoration: underline; /* Underline highlights for emphasis */
}

.description {
    font-size: 1.1rem;
    font-weight: 300;
    margin: 10px 0 20px;
    text-shadow: 5px 5px 5px solid black;
}

.sign-up-button {
    background-color: var(--teal-light-shade-2);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5rem;
    transition: background 0.3s ease;
}

.sign-up-button:hover {
    background-color: #02756c;
}

.social-icons {
    margin-top: 20px;
}

.icon {
    margin: 0 10px;
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

.icon:hover {
    color: #FFC107; /* Change color on hover */
}
