@charset "utf-8";
/* CSS Document */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    background-color:#CDD7D9;
    color:black;
    width: 100%;
    min-height: 100vh;
    font-family: "acumin-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
}

nav div {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
	flex-wrap: wrap;}



nav {
	position: absolute; 
	z-index: 10;
    background-color:#2A4D59;
    height: 50px;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;  
	border-radius: 50px;
    padding: 40px 20px;
    margin: 30px; 
}

nav h4 img {
    height: 30px;
    padding-top: 5px;}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
	justify-content:flex-end;
	margin-left: auto;}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    font-family: "acumin-pro", sans-serif;
    display: block;
    padding: 10px;}


nav ul li a:hover {
    background-color:#DFE783;
    border-radius: 50px;
    color: black;}

.hero {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(1px);
}





.planner-section {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}


.planner-section h1 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
	justify-content: flex-start;
}

.planner-section p {
    max-width: 800px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.styled-hr {
  border: none;
  height: 2px;         
  background-color: rgba(42, 77, 89, 0.3); 
  margin-bottom: 50px;
	

}

.selectors {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
	margin-top:80px;
}

.selectors button {
    padding: 10px 18px;
    border-radius: 50px;
    border: none;
    background: #2A4D59;
    color: white;
    cursor: pointer;
    font-size: 1rem;
	
}


.selectors button:hover {
   	opacity: 0.7;	
	color: black;
}



.search-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 150px;
}

.search-bar input {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #aaa;
    width: 200px;
}

.search-btn {
    padding: 12px 18px;
    border-radius: 8px;
    border: none;
    background: #2A4D59;
    color: white;
    cursor: pointer;
}
.search-btn:hover {
   	opacity: 0.7;	
	color: black;
}



.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
    justify-items: center;
	margin-top:80px;
}

.image-grid img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
}




.site-footer {
  background-color: #2A4D59;
  color: #ffffff;
  padding: 40px 20px 20px;
  font-family: "acumin-pro", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  gap: 30px;
}

.footer-section {
  flex: 1;
  min-width: 220px;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #f4f4f4;
}

.footer-section p,
.footer-section a {
  font-size: 14px;
  color: #cccccc;
  text-decoration: none;
  line-height: 1.6;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #aaaaaa;
}
.footer-bottom img {
	width: 200px;
	margin-top: 15px;
	margin-bottom: 15px; 
}

@media (max-width: 1000px) { 
	nav {
        height: auto;
        padding: 20px;
    }

    nav div {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
    }

    nav ul {
        justify-content: center;
        margin-left: 0;
        flex-wrap: wrap;
        gap: 0px;
    }
}
@media (max-width: 600px) { 
	
	nav {
        width: 90%;
        height: auto;
        padding: 15px;
    }

    nav div {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    nav h4 img {
        height: 25px;
    }

    nav ul {
        gap: 10px;
        font-size: 12px;
    }

	.selectors {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        justify-items: stretch;
    }

    .selectors button {
        width: 100%;
        text-align: center;
    }
    .search-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .search-bar input,
    .search-btn {
        width: 100%;
    }

			.planner-section p {width: 80%;
	align-items: center;
}

	  .footer-container {
    flex-direction: column;
    text-align: center;
  }

	
		  .footer-container {
    flex-direction: column;
    text-align: center;
  }
	.footer-container h3 {
		text-align:center;
		margin-top: inherit;
		margin-bottom:10px;
	}
}
@media (max-width: 400px) {
	
	nav {
        width: 80%;
        height: auto;
        padding: 0px;
		
    }

    nav div {
        flex-direction: column;
        text-align: center;
        gap: 5px;
		align-content: center;
		align-items:center;
		margin-top: 10px;
		margin-bottom:10px;
    }

    nav h4 img {
        height: 25px;
    }

    nav ul {
        gap: 10px;
        font-size: 12px;
		align-items: center;
    }
  .selectors {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        justify-items: stretch;
    }

    .selectors button {
        width: 100%;
        text-align: center;
    }
    .search-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .search-bar input,
    .search-btn {
        width: 100%;
    }
	
		.planner-section p {width: 90%;
	align-items: center;
}
	
	
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

	
		  .footer-container {
    flex-direction: column;
    text-align: center;
  }
	.footer-container h3 {
		text-align:center;
		margin-top: inherit;
		margin-bottom:10px;
	}

}



