* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    color: white;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /*linear-gradient(135deg, 
            rgba(42, 95, 95, 0.5),
            rgba(26, 63, 63, 0.5)
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.2)
        ),*/
        url('Image_Zach_06.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -1;
    filter: brightness(0.9) contrast(1.1);
}

/* Add a subtle overlay to improve text readability */
.background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3)
    );
}


.logo {
    font-size: 2rem;
    font-style: italic;
    position: relative;
    left: auto;
}


.icon:hover {
    transform: scale(1.1);
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    padding: 2rem;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.coming-soon {
    font-size: 2rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.signup-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
}

.signup-title {
    margin-bottom: 0.5rem;
}

.signup-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.email-form {
    display: flex;
    gap: 0.5rem;
    display: flex;
    justify-content: center;
}

.email-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
}

.email-form button {
    padding: 0.75rem 1.5rem;
    background: white;
    color: #2a5f5f;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}




@media (max-width: 768px) {

    .logo{
        top: 4rem;
        position: absolute;
        left: 1rem;
        font-size: 1.5rem;
    }
}


.backgroundAbout{
    background-color: #2d3629;
}

.columnContainer {
    display: flex;
    width: 100%;
  }

.columnLeft {
    width: fit-content;
    height: 100%;
    background: linear-gradient(135deg,
      rgba(42, 95, 95, 0.5),
      rgba(26, 63, 63, 0.5),
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.2)
    );
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }

  .columnImage{
    position: sticky;
    width: 25rem;
    height: auto;
  }
  

  .columnRight {
    flex: 1;
    background: #555e56;
  }








/* Footer styles */
footer {
    background: #555e56;
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-bottom: 2rem;
}

footer h4 {
    font-weight: bold;
    margin-bottom: 1rem;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 0.5rem;
}

footer a {
    color: white;
    text-decoration: none;
}
  