/* Reset some default styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: gray;
    font-weight: bold;
}

/* Make sections stretch across the whole screen */
section {
    width: 100%;
    height: 100vh; 
    overflow: auto; 
}

/* Style section 1 */
#section1 {
    background-color: #f0f0f0; 
    position: relative; 
}

.logo {
    max-width: 150px; 
    max-height: 100px; 
  }

nav {
    background-color: transparent; 
    position: absolute;
    width: 100%;
    padding: 20px 0;
    top: 0;
    left: 0;
    z-index: 999; 
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 60px;
  }

nav h1 {
    margin: 0;
  }
  
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  nav ul li {
    display: inline;
    margin-left: 150px;
  }
  
  nav ul li a {
    color: gray;
    text-decoration: none;
    font-weight: bold;
  }

.background-image {
    background-image: url('./images/green-leaves-white-background-minimalism-style.jpg'); 
    background-size: cover;
    background-position: center;
    height: 100%; 
}

.welcome-text{
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    text-align: left;
    font-size: large
}

/* Style section 2 */

#section2 {
    display: flex;
    justify-content: center; 
    align-items: center; 
    background-color:whitesmoke;
}

.container {
    display: flex;
    flex-wrap: wrap; 
    max-width: 1200px;
}

.video-container, .text-container {
    flex: 1; 
    box-sizing: border-box; 

}

.video-container {
    margin-right: 40px;
    position: relative;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px; 
}

.text-container {
    color: gray; 
    border-radius: 15px; 
    line-height: 2;
    font-weight: bold;
    
}

/* Style section 3*/

#section3 {
    text-align: center; 
}

#section3 h2 {
    margin-top: 100px;
}

#section3 .container {
    display: flex;
    justify-content: center; 
    align-items: center; 
    flex-wrap: wrap;
    margin-top: 100px;
}

#section3 .text-container {
    flex: 1; 
    padding: 40px;
    border-radius: 15px; 
    background-color: #f0f0f0; 
    margin: 20px; 
    margin-left: 200px;
}

#section3 .text-container p {
    margin-bottom: 20px; 
}

#section3 .text-container a {
    display: block;
    text-decoration: none;
    background-color: #333; 
    color: #fff; 
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease; 
}

#section3 .text-container a:hover {
    background-color: #555; 
}

footer {
    background-color: rgba(0, 0, 0, 0.02);
    padding: 20px 0;
    text-align: center;
    flex-shrink: 0;
    width: 100%;
  }