@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html,
body {
  height: 100%;
  width: 100%;
  font-family: Roboto;
}
:root {
  /* Primary Colors */
  --primary-color: #009245;
  --primary-white: #ffffff;
  --primary-dark: #1e1e1e;
}
.eco-container {
  max-width: 1440px;
  padding: 0 44px;
  margin: auto;
  @media only screen and (max-width: 1024px) {
    padding: 0 32px;
  }
  @media only screen and (max-width: 776px) {
    padding: 0 16px;
  }
}

.header {
  height: 100px;
  width: 100%;
  padding: 16px 0;
  background-color: var(--primary-dark);
}
.navbar {
  padding: 10px 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 49px;
  width: 65px;
}
.navpart-1 a {
  text-decoration: none;
}
.navpart-1 h2 {
  color: var(--primary-white);
  font-weight: 800;
}
.navpart-1 span {
  color: var(--primary-color);
}
.navpart-2 {
  display: flex;
  align-items: center;
  gap: 30px;
}
.navitems {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.navitems li {
  padding: 10px;
}

.navitems li a {
  text-decoration: none;
  color: var(--primary-white);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navitems li a.active {
  color: var(--primary-color);
}
.navitems a.active {
  color: var(--primary-color);
  font-weight: bold;
}
.navitems a:not(.active):hover {
  color: var(--primary-color);
}
.hire-btn {
  padding: 8px 22px;
  text-decoration: none;
  background-color: var(--primary-white);
  color: var(--primary-dark);
  border-radius: 50px;
  border: 1px solid var(--primary-dark);
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}
.hire-btn:hover {
  background-color: var(--primary-color);
  color: var(--primary-white);
}
.navpart-2 i {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  display: none;
}
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #c9c9c97f;
  backdrop-filter: bluR(4px);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  transition: 0.3s ease all;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: var(--primary-dark);
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: var(--primary-color);
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

#main {
  transition: margin-left 0.5s;
  padding: 16px;
  display: none;
  color: var(--primary-white);
}

.cross {
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .navitems li {
    padding: 10px;
  }
  .navitems li a {
    display: none;
  }
  .hire-btn {
    display: none;
  }
  .nav-btn {
    display: none;
  }
  .navpart-2 i {
    display: block;
  }
  #main {
    transition: margin-left 0.5s;
    padding: 16px;
    display: block;
  }
}
.hero {
  background-color: var(--primary-dark);
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hero-left {
  flex: 1;
  min-width: 300px;
  padding-right: 20px;
}

.hero-left h1 {
  font-size: 58px;
  font-weight: 750;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--primary-white);
  position: relative;
}

.hero-left p {
  font-size: 16px;
  color: #cccccc;
  max-width: 500px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-buttons a {
  display: inline-block;
  text-decoration: none;
  color: var(--primary-white);
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s;
}
.hero-buttons a i {
  color: var(--primary-color);
  margin-left: 6px;
  transition: color 0.3s;
}
.hero-buttons a:hover {
  color: var(--primary-color);
}
.hero-buttons a:hover i {
  color: var(--primary-white);
}
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}
.hero-right img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.hero-right img:hover {
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .hero-left h1 {
    font-size: 42px;
  }

  .hero-buttons {
    align-items: center;
  }

  .hero-right img {
    max-width: 100%;
  }
}
.showcase {
  background-color: var(--primary-dark);
  padding: 90px 0;
}

.showcase-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.showcase-left {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.showcase-left h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--primary-white);
  margin-bottom: 24px;
}

.showcase-left p {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 30px;
}

.showcase-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--primary-white);
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.showcase-link i {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.showcase-link:hover {
  color: var(--primary-color);
}

.showcase-link:hover i {
  color: var(--primary-white);
}

.showcase-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-right img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.showcase-right img:hover {
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .showcase-content {
    flex-direction: column;
    text-align: center;
  }

  .showcase-left {
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .showcase-left h1 {
    font-size: 36px;
  }

  .showcase-right img {
    max-width: 100%;
  }
}
.photography-services {
  background-color: #111;
  color: #fff;
  padding: 5rem 0;
}
.photography-services h2 {
  text-align: center;
  padding-bottom: 60px;
}

.services-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.services-left,
.services-right {
  flex: 1;
  min-width: 280px;
}

.services-left h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  margin-bottom: 1.5rem;
}

.services-list a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.services-list a .ri-arrow-right-up-line {
  color: #00ff99;
  margin-left: 0.5rem;
  transition: color 0.3s ease;
}

.services-list a:hover {
  color: #00ff99;
}

.services-list a:hover .ri-arrow-right-up-line {
  color: #fff;
}

.services-right img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.services-right img:hover {
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .services-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-left h2 {
    font-size: 1.5rem;
  }

  .services-list a {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .services-left h2 {
    font-size: 1.25rem;
  }

  .services-list a {
    font-size: 0.95rem;
  }
}

.portfolio-section {
  padding: 2rem 0;
}
.portfolio-section h2 {
  padding-bottom: 40px;
  font-size: 2rem;
  font-weight: 700;
}

.portfolio-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tall {
  justify-content: space-between;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  height: 50%;
  min-height: 250px;
}

.column.tall .portfolio-item {
  height: 100%;
  min-height: 100%;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.portfolio-item:hover img {
  filter: grayscale(0%);
}

.category-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.4rem 0.8rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0.25rem;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .portfolio-layout {
    grid-template-columns: 1fr 1fr;
  }

  .column.tall {
    height: auto;
  }
}

@media (max-width: 768px) {
  .portfolio-layout {
    grid-template-columns: 1fr;
  }

  .portfolio-item {
    height: auto;
    min-height: 200px;
  }

  .column {
    flex-direction: column;
  }
}

.team-section {
  background-color: #111;
  color: #fff;
  padding: 4rem 0;
}

.team-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.5;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.member-img {
  width: 100%;
  overflow: hidden;
  border-radius: 0.25rem;
  aspect-ratio: 1 / 1;
  background-color: #222;
}

.member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.member-img:hover img {
  filter: grayscale(0%);
}

.member-info {
  margin-top: 1rem;
}

.member-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  letter-spacing: 1px;
}

.member-info p {
  font-size: 0.875rem;
  color: #ccc;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-heading {
    font-size: 1.5rem;
  }
}

.insights-section {
  background-color: #111;
  color: #fff;
  padding: 7rem 0;
}

.insights-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.4;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.insight-card {
  background-color: transparent;
}

.insight-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 1rem;
}

.insight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.insight-img:hover img {
  filter: grayscale(0%);
}

.insight-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  text-transform: uppercase;
}

.insight-content p {
  font-size: 0.875rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.read-more {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.read-more i {
  color: var(--primary-color);
  transition: color 0.3s;
}

.read-more:hover {
  color: var(--primary-color);
}

.read-more:hover i {
  color: var(--primary-white);
}

@media (max-width: 768px) {
  .insights-heading {
    font-size: 1.5rem;
  }

  .insight-content h3 {
    font-size: 0.95rem;
  }
}
.help-section {
  position: relative;
  background: url("./assets/img/lakee.jpg") no-repeat center center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  color: #fff;
}

.help-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
}

.help-content {
  max-width: 600px;
}

.help-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.help-content p {
  font-size: 1rem;
  margin: 0.4rem 0;
}

.help-content a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.help-content a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .help-content h2 {
    font-size: 1.5rem;
  }

  .help-section {
    height: auto;
    padding: 2rem 0;
  }
}
.site-footer {
  background-color: #131111;
  color: #fff;
  padding: 3rem 1rem;
  font-family: sans-serif;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-col h4 {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ddd;
  font-size: 0.95rem;
}

.footer-col ul li a:hover {
  color: #fff;
}

.hire-form {
  display: flex;
  margin-bottom: 1rem;
  gap: 0;
}

.hire-form input {
  flex: 1;
  padding: 0.5rem;
  border: none;
  outline: none;
  font-size: 0.9rem;
}

.hire-form button {
  background-color: #08a64b;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  font-weight: bold;
  cursor: pointer;
}

.hire-form button:hover {
  background-color: #0cb758;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
}

.social-icons li a img {
  width: 24px;
  height: 24px;
  display: block;
}
.ri-facebook-circle-fill:hover {
  transition: 0.3s;
  color: var(--primary-color);
}
.ri-instagram-line:hover {
  transition: 0.3s;
  color: var(--primary-color);
}
.ri-linkedin-box-fill:hover {
  transition: 0.3s;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
  }

  .hire-form {
    flex-direction: column;
  }

  .hire-form input,
  .hire-form button {
    width: 100%;
  }
}
