* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
  scroll-behavior: smooth;

}

a.smooth-scroll {
  scroll-behavior: smooth;

}

body {
    font-family: Arial, sans-serif;
    background-image: url("city-above.jpeg");
	height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 100%;
}

h1, h2 {
    font-weight: bold;
    color: #fff;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(51, 51, 51, 0.8);
    padding: 10px;
    text-align: center;
    z-index: 1000;
	transition: width 0.3s ease;
}


.nav-toggle {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
	display: inline-block;
	
}

.nav-icon {
    display: inline-block;
    width: 20px;
    height: 20px; /* updated height to 15px */
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
	position: relative;  
}


.nav-icon::before {
    content: "";
    position: absolute;
    top: 1px;
    left: -15%;
    width: 20px;
    height: 3px;
    background-color: #fff;
    transition: transform 0.1s ease;
}


.nav-icon::after {
    content: "";
    position: absolute;
    top: 6px;
    left: -15%;
    width: 20px;
    height: 3px;
    background-color: #fff;
    transition: transform 0.1s ease;

}


.nav-icon:hover::before {
    transform: translateY(3px);
}


.nav-icon:hover::after {
    transform: translateY(-3px);
}

.nav-icon::after {
	top:12px;
}


.nav-icon.active::before {
    transform: rotate(45deg) translate(5px, 5px);
}


.nav-icon.active::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
}

.nav-links li {
    margin-left: 120px;
	margin-right: 120px;
}

.nav-links a {
	font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ccc;
}


.nav-toggle:hover.nav-icon {
    transform: rotate(90deg);
}


.nav-links.active {
    display: flex;
}


.nav-links.inactive {
    display: none;
}




.nav-toggle {
    position: relative;

}


.nav-toggle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 2px;
    background-color: #fff;
    transition: transform 0.3s ease;

}


.nav-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 2px;
    background-color: #fff;
    transition: transform 0.3s ease;
}


.nav-toggle.active::before {
    transform: rotate(45deg);
}


.nav-toggle.active::after {
    transform: rotate(-45deg);

}

.parallax {
    background-image: url("web-background.jpeg");
    height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 100%;
}

.parallax-content {
    width: 80%;
    margin: 0 auto;
    color: #FFF;
    padding-top: 50px;
}


.cover {
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.cover-image {
    position: absolute;
    top: -1%;
    left: -30%;
    width: 92%;
    height: 92%;
	object-fit: contain;
}

.cta {
  left: 47%;
  top: 67%;
  position: absolute;
  padding: 10px 20px;
  font-size: 48px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background-color: #08460A;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
	
@media (max-width: 768px) {
	left: 47%;
    padding: 10px 20px;
    transform: translateX(-34%);
	font-size: 16px;
	margin-top: 30px;
	}
}


.cta:hover {
  background-color: #026633; 
}

.cover  h1 {
    font-size: 80px;
    animation: titleAnimation 2s ease-in-out;
    text-shadow: 3px 3px 10px #08460A;
}
  


.cover p {
    font-size: 75px;
    animation: titleAnimation 2s ease-in-out ;
    text-shadow: 2px 2px 4px #08460A;
}



@keyframes titleAnimation {

    0% {
        transform: translateY(-100%);
        opacity: 0;

    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }

}


.section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}



.description,.about-author,.reviews,.contact, .story {
	height: 100vh;
    padding: 50px;
    max-width: 800px;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	display: flex; 
    flex-direction: column; 
    justify-content: center;
	align-items: center;
	align-content: center;
	
	
}

.story{
	background: url("circle-city.jpeg");
	background-size: cover;
	background-position: center;
	font-size: 25px;
	color: #fff;
	text-shadow: 2px 2px 4px #08460A;
}

.story h2 {
	font-size: 40px;
	margin-bottom: 30px;
	
}

.description{
	background: url("description.jpeg");
	background-size: cover;
	font-size: 25px;
	color: #fff;
	text-shadow: 2px 2px 4px #08460A;
}

.description h2 {
	font-size: 40px;
	margin-bottom: 30px;
	
}


.about-author{
	background: url("image4.jpeg");
	background-size: cover;
	font-size: 25px;
	color: #fff;
	text-shadow: 2px 2px 4px #08460A;
}

.about-author h2 {
	font-size: 40px;
	margin-bottom: 30px;
	
}

.reviews{
	background: url("image6.jpeg");
	background-size: cover;
	font-size: 25px;
	color: #fff;
	text-shadow: 2px 2px 4px #08460A;
}

.reviews h2 {
	font-size: 40px;
	margin-bottom: 30px;
	
}

.contact{
	background: url("contact.jpeg");
	background-size: cover;
	font-size: 25px;
	color: #fff;
	text-shadow: 2px 2px 4px #08460A;
	
}

.contact h2 {
	font-size: 40px;
	margin-bottom: 30px;
	
}

@media (max-width: 768px) {

 .nav-links {
    flex-direction: column;
  }

 .nav-links li {
    margin-left: 0;
    margin-right: 0;
  }

}


@media (max-width: 1000px) {

 .cover-image {
    top: -13%; 
    left: 16%; 
    width: 70%; 
    height: 70%; 

  }

 .cover h1 {
	 

    font-size: 45px; 
    left: 20%;
	bottom: 43%; 
    position: absolute;
    
  }

 .cover p {
    font-size: 25px; 
    bottom: 36%; 
    left: 22%;
    position: absolute;
  }

	
}



 .nav-toggle {
    padding: 5px;

  }

 .nav-icon {
    width: 15px;
    height: 15px;

  }

