*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-decoration: none;
    list-style: none;
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 6%;
    background: rgb(43, 50, 32);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
.logo{
     font-size: 25px;
     color: whitesmoke;
     font-weight: 600;
     transition: 0.3s ease;
}
.logo:hover{
    color: green;
    text-shadow: 0 0 25px green, 0 0 50px green;
    transform: scale(1.1);
}
span{
    color: green;
}
.navbar a{
    font-size: 18px;
    color: whitesmoke;
    font-weight: 500;
    margin: 0 20px;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease;
}
.navbar a:hover,
.navbar a:active{
    color: green;
    border-bottom: 3px solid green;
}
.contact{
    padding: 10px 20px;
    background-color: whitesmoke;
    color: black;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: 0.3s ease;
}
.contact:hover{
    background-color: green;
    
    color: whitesmoke;
}
.home{
    width: 100%;
    min-height: 100vh;
    display: flex;
    background: whitesmoke;
    gap: 7em;
    align-items: center;
    padding: 30px 12% 0;
}
.home-content{ 
    max-width: 800px;
}
.home-content h3{
    font-size: 42px;
}
.home-content h1{
    font-size: 62px;
    line-height: 1.2;
}
.home-content p{
    font-size: 18px;
    margin: 25px 0 30px;
}
.btn-box{
    width: 345px;
    display: flex;
    gap: 2em;
}
.btn-1{
    padding: 15px 28px;
    background-color: black;
    color: whitesmoke;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 19px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: 0.3s ease;
    cursor: pointer;
}
.btn-1:hover{
   background-color: rgb(67, 99, 18);
   color: whitesmoke;
   border: 2px solid black;
}
.img img{
    border-radius: 44%;
    width: 450px;
}
::-webkit-scrollbar{
    width: 15px;
}
::-webkit-scrollbar-thumb{
    background-color: green;
}
::-webkit-scrollbar-track{
    background-color: black;
    width: 50px;
}
.about{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12% 8%;
    gap: 10em;
    background-color: black;
}
.about-img img{
    position: relative;
    width: 450px;
      box-shadow: 0 0 50px green;
      border-radius: 44%;
}

.img img,
.about-img img {
  width: 100%;
  max-width: 350px;   /* feel free to tweak */
  height: auto;
  border-radius: 44%;
}

.about-content h2{
    text-align: left;
    color: whitesmoke;
    font-size: 45px;
}
.about-content h3{

    color: whitesmoke;
    font-size: 62px;
}
.about-content p{
    margin: 2em 0 3em;
    color: whitesmoke;
    font-size: 32px;
}
strong{
    color: green;
    font-style: italic;
}
.contact-form h2{
    text-align: center;
    margin-top: 3em;
    margin-bottom: 1em;
    font-size: 32px;
}
.contact-form form{
    max-width: 50em;
    margin: 1rem auto;
    text-align: center;
    margin-bottom: 3em;
}
.contact-form form .input-box{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.contact-form form .input-box input,
.contact-form form textarea{
     width: 100%;
     padding: 1.5em;
     font-size: 20px;
     color: black;
      background: whitesmoke;
      border-radius: .9em;
      margin: 1em 0;
      resize: none;
}
.footer{
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 40px 0;
    background-color: black;
}
.footer .social{
    text-align: center;
    padding-bottom: 25px;
    color: whitesmoke;
}
.footer .social a{
    font-size: 24px;
    color: whitesmoke;
    border: 2px solid green;
    width: 40px;
    height: 40px;
    line-height: 38px;
    display: inline-block;
    text-align: center;
    border-radius: 60%;
    margin: 0 8px;
    box-shadow: inset 0 0 10px green, 0 0 10px green;
    transition: 0.3s ease;
}
.footer .social a:hover{
    transform: scale(1.2) translateY(-10px);
    color: rgb(138, 225, 7);
    border: 2px solid greenyellow;
}
.footer ul{
    margin-top: 0;
    padding: 0;
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}
.footer ul li a{
    color: whitesmoke;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease;
}
.footer ul li a:hover{
    border-bottom: 3px solid greenyellow;
}
.footer ul li{
    display: inline-block;
    padding: 0 15.4px;
}
.footer .copyright{
    margin-top: 15px;
    text-align: center;
    font-size: 14.9px;
    color: whitesmoke;
}

/* ② Stack sections on narrow screens */
@media (max-width: 768px) {
  .home,
  .about {
    flex-direction: column;
    gap: 2rem;
    padding: 80px 6%;     /* smaller side-padding */
    text-align: center;
  }

  .home-content h1 { font-size: clamp(32px, 5vw, 62px); }
  .home-content h3,
  .about-content h3 { font-size: 32px; }
  .about-content p { font-size: 18px; }


/* 1. compress side-padding on small screens */
.home,
.about {
  padding: 30px 4% 0;
}

/* 2. keep header from covering content */
.home {
  margin-top: 100px;          /* roughly header height */
}

/* 3. shrink hero photo further if needed */
.img img {
  max-width: 300px;
  max-height: 60vh;
}



/* Base Styles */
.navbar {
  display: flex;
  gap: 20px;
}

.hamburger {
  display: none;
  font-size: 28px;
  color: whitesmoke;
  cursor: pointer;
  z-index: 1001;
}

/* Hide the checkbox itself */
#menu-toggle {
  display: none;
}

/* Responsive Navbar for Mobile */
@media (max-width: 768px) {
  .navbar {
    display: none;
    flex-direction: column;
    background-color: rgb(43, 50, 32);
    position: absolute;
    top: 80px;
    right: 5%;
    width: 200px;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 10px green;
    z-index: 1000;
  }

  .navbar a {
    margin: 10px 0;
    font-size: 18px;
    color: whitesmoke;
  }

  .hamburger {
    display: block;
  }

  #menu-toggle:checked ~ .navbar {
    display: flex;
  }

  .contact {
    display: none; /* optional to hide on mobile */
  }
}