* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    /* line-height: 1.6; */
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(1px);
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    justify-content: space-between;
    align-items: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: flex-end;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0066cc;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/home_image.png') center/cover no-repeat;
    z-index: -1;
}

.hero-logo {
    position: absolute;
    top: 0px;
    left: 10px;
    height: 250px;
}

.hero-text h1 {
    font-size: 7rem;
    font-family: 'Courier New', Courier, monospace;
    margin-top: 350px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.hero-text p {
    font-size: 4rem;
    font-family:'Times New Roman', Times, serif;
    color: #448543;
    background-color: rgba(255, 255, 255, 0.8);
    display: inline-block;
    padding: 10px 20px;
}

.info {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
}

.info-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/lake.png') center/cover no-repeat;
    z-index: -1;
}

.info-logo {
    position: absolute;
    top: 0px;
    left: 40px;
    height: 150px;
}

.info-text h1 {
    position: absolute;
    top: 155px;
    left: 60px;
    height: 150px;

    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: green;
}

.info-image{
    float: right;
    height: 500px;
    width: auto;
    margin-right: 110px;
    border-radius: 50px;
}

.info-review h3 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.info-review p {
    margin-bottom: 15px;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* 
.info-text p {
    font-size: 4rem;
    font-family:'Times New Roman', Times, serif;
    color: #448543;
    background-color: rgba(255, 255, 255, 0.8);
    display: inline-block;
    padding: 10px 20px;
}
*/

.section {
    padding: 80px 0;
}

.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/contac_image.png') center/cover no-repeat;
    z-index: -1;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-details {
    min-width: 300px;
    position: absolute;
    bottom: 20px;
    left: 49px;
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Split layout for products section */
.products-split {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}
.products-split .left-column {
    flex: 0 0 36%;
    max-width: 420px;
    box-sizing: border-box;
}
.products-split .right-column {
    flex: 1 1 64%;
    box-sizing: border-box;
}

@media screen and (max-width: 1400px) {
    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 15px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
        margin-top: 250px;
        letter-spacing: 3px;
    }
    
    .hero-text p {
        font-size: 2rem;
        padding: 8px 16px;
    }
    
    .hero-logo {
        height: 150px;
        left: 20px;
    }
    
    .info {
        height: auto;
        padding: 100px 0;
    }
    
    .info-content {
        padding: 0 20px;
    }
    
    .info-text h1 {
        position: static;
        margin-top: 80px;
        margin-bottom: 30px;
        text-align: left;
        font-size: 2rem;
    }
    
    .info-logo {
        position: static;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .info-image {
        float: none;
        width: 100%;
        height: auto;
        max-width: 500px;
        margin: 20px auto;
        display: block;
    }
    
    .info-review h3 {
        font-size: 1.8rem;
    }
    
    .info-review p {
        font-size: 1rem;
    }
    
    .contact-details {
        position: static;
        text-align: center;
        margin-top: 20px;
    }
    
    .contact-details p {
        font-size: 1rem;

    }
}

@media screen and (max-width: 576px) {
  .hero-text h1 {
    font-size: 2.5rem;
    margin-top: 200px;
    letter-spacing: 2px;
  }
  
  .hero-text p {
    font-size: 1.5rem;
    padding: 6px 12px;
  }
  
  .hero-logo {
    height: 120px;
    left: 10px;
  }
  
  .info-text h1 {
    font-size: 1.8rem;
  }
  
  .info-logo {
    height: 80px;
  }
  
  .info-review h3 {
    font-size: 1.5rem;
  }
  
  .info-review p {
    font-size: 0.9rem;
  }
    
  .contact-details p {
    font-size: 0.7rem;
  }
    
  .nav-container {
    padding: 0 15px;
  }

  .contact-details {
    min-width: 30px;
    position: absolute;
    bottom: 20px;
    left: 4px;
  }
}

.download-section {
  padding: 100px 0;
  text-align: center;
  background-color: transparent;
}

.download-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
  font-family: 'Times New Roman', Times, serif;
}

.download-btn {
  display: inline-block;
  background-color: #448543;
  color: white;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.download-btn:hover {
  background-color: #3a7239;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1400px) {
  .download-section h2 {
    font-size: 2rem;
  }
  
  .download-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 576px) {
  .download-section {
    padding: 60px 0;
  }
  
  .download-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .download-btn {
    padding: 10px 25px;
    font-size: 1rem;
  }
}