@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #000; /* solid black page */
}

/* ===== HEADER ===== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

header .brand {
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
}

.navigation-items {
  display: flex;
  gap: 30px;
}

.navigation-items a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  position: relative;
}

.navigation-items a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: 0.3s ease;
}

.navigation-items a:hover::after {
  width: 100%;
}

/* ===== ABOUT SECTION ===== */

.contact-info {
    position: relative;
  margin: 160px auto 100px auto;
  padding: 60px 40px;
  max-width: 800px;

  background-image: url('IMG_4923.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  overflow: hidden;
  line-height: 1.8;
}
.contact-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 60, 50, 0.75); /* greenish tint */
  backdrop-filter: blur(3px);
  z-index: 1;
}
.contact-info * {
  position: relative;
  z-index: 2;
}
.contact-info h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}
.contact-info p {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

/* ===== SOCIAL ICONS ===== */

.media-icons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.media-icons a {
  font-size: 1.4rem;
  color: #fff;
  transition: 0.3s ease;
}

.media-icons a:hover {
  transform: scale(1.2);
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {
  header {
    padding: 20px;
  }
  .navigation-items {
    gap: 15px;
  }
  .contact-info {
    margin: 140px 20px 80px 20px;
    padding: 40px 25px;
  }
  .contact-info h1 {
    font-size: 2rem;
  }
  .contact-info p {
    font-size: 1rem;
  }
}
/* ===== EMPHASIS ===== */
.emphasis {
  color: #FF5733;
  font-weight: 600;
}






  @media (max-width: 1040px){
    header{
      padding: 12px 20px;
    }

    section{
      padding: 100px 20px;
    }

    .home .media-icons{
      right: 15px;
    }

    header .navigation{
      display: none;
    }

    header .navigation.active{
      position: fixed;
      width: 100%;
      height: 100vh;
      top: 0;
      left: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      background: rgba(1, 1, 1, 0.5);
    }

    header .navigation .navigation-items a{
      color: #222;
      font-size: 1.2em;
      margin: 20px;
    }

    header .navigation .navigation-items a:before{
      background: #222;
      height: 5px;
    }

    header .navigation.active .navigation-items{
      background: #fff;
      width: 600px;
      max-width: 600px;
      margin: 20px;
      padding: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-radius: 5px;
      box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
    }

    .menu-btn{
      background: url(menu.png)no-repeat;
      background-size: 30px;
      background-position: center;
      width: 40px;
      height: 40px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .menu-btn.active{
      z-index: 999;
      background: url(close.png)no-repeat;
      background-size: 25px;
      background-position: center;
      transition: 0.3s ease;
    }
  }

  @media (max-width: 560px){
    .home .content h1{
      font-size: 3em;
      line-height: 60px;
    }
  }

