/* General Styles */
body {
    font-family: sans-serif; /* Clean, modern font */
    margin: 0;
    display: flex; /* For flexbox layout */
    flex-direction: column; 
    min-height: 100%;
    overflow-x: hidden;
}

body:before {
    content: ' ';
    position: fixed;
    display: block;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-image: url("../images/hero.png"); /* Optional: Add a subtle background image */
    background-size: cover;
    background-position: center;
    opacity: 0.5; /* Make background slightly transparent */
}

/* Media query for 4K resolution */
@media (min-width: 3840px) {
    body:before {
        background-image: url("../images/hero_4k.png"); /* 4K background */
    }
}
  
/* Media query for 8K resolution */
@media (min-width: 7680px) {
    body:before {
        background-image: url("../images/hero_8k.png"); /* 8K background */
    }
}

/* ... other styles ... */

footer {
    background-color: #f0f8ff; /* Light blue, approachable */
    padding: 20px;
    text-align: center;
}

header {
    background-color: darkblue;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.header-content { 
    padding: 20px;
    display: flex; /* Enable flexbox for the header */
    justify-content: center; /* Horizontally center the content */
    align-items: center; /* Vertically center the content */
    min-width: calc(100vw - 40px); /* FHD width */
    margin: 0 auto; /* Center the header on the page */
    position: relative;
}

.header-text {
    margin-left: 20px; /* Add some space between logo and text */
    width: 260px;
    color: white;
}

/* ... other styles ... */


h1, h2 {
    font-weight: bold;
}

.about {
    position: relative;
    margin-bottom: 40px;
}

main {
    flex: 1; /* Allows main content to expand */
    padding: 40px;
    text-align: center;
    position: relative;
}

/* Specific Section Styles */
.about-content {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    max-width: 600px;
}

.about-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    padding-top: 20px;
}

.about-content .about-text {
    padding-top: 20px;
    padding-bottom: 20px;
}

.about-content .about-text .block {
    padding-top: 5px;
    padding-bottom: 5px;
    line-height: 1.5;
    margin: 10px 10px;
    background-color: rgba(108, 231, 247, 0.6); /* Ensure content is readable */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

.hashtag {
    color: rgb(83, 19, 133);
    font-weight: bold;
}

.hero-content {
    position: relative;
    z-index: 1; /* Ensure content is above the background image */
    background-color: rgba(255, 255, 255, 0.6); /* Ensure content is readable */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    align-items: center;
    justify-content: space-between;
    opacity: 1;
    color: black; /* Ensure text is readable over image */
}


.hero {
    max-width: 600px; /* Limit paragraph width for readability */
    margin: 0 auto; /* Center the text */
}

.hero-content {
    margin: 10px;
}

.hero-content p {
    line-height: 1.6;
}

.hero-content form {
    /* Style form elements (input, label, button) to your liking */
    display: inline-block;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Space between form elements */
    padding: 10px;
}

#signupButton {
    width: 200px;
    height: auto;
    margin: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

.logo { /* Added class to style the logo */
    max-width: 150px; /* Adjust as needed for your logo size */
    height: auto; /* Maintain aspect ratio */
}

@media (width <= 450px) {
    .logo {
        max-width: 110px;
        height: auto;
    }   
}
