html,body{
    overflow-x: hidden;
    overflow-y: auto;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    scroll-behavior: smooth;
    margin: 0;
    background: black;
}

header{
display: flex;
flex-wrap: wrap;
width:100%;
height: 100px;
border-bottom: 2px solid white;
position: fixed;
color: white;
background: rgba(0,0,0,0.5);
top: 0;
z-index: 1000;
}
header img{
    height: 110px;
    max-width: 70px;
    margin-left: 20px;
    object-fit: cover;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
}


h3{
    font-size: 68px;
    color: white;
    text-align: center;
    text-shadow: 0 0 5px black, 0 0 10px black, 0 0 20px black;
    margin-top: 0;
    position: absolute;
    top: 50%;
    left: 50%;
}

nav{
    margin: 0 auto;
    align-self: center;
    display: flex;
    justify-content: center;
    align-items: center;

    
}
nav ul{
    list-style: none;
    display: flex;
    gap: 0 50px;
}
nav ul li{
    font-size: 26px;
    font-weight: bold;
}
nav ul li a{
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    transition: text-shadow 0.3s ease-in-out,color 0.3s ease-in-out;
}
nav ul li a:hover{
    text-shadow: 0 0 5px #00ffc6, 0 0 10px #00ffc6, 0 0 20px #00ffc6;
}
h1{
    font-size: 48px;
    margin: 0 20px;
    align-self: center;
}
footer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'contacts socials';
    width: 100%;
    height: auto;
    background: black;
    border-top: 1px solid white;
    color: white;
    bottom: 0;
    
}



footer p{
    font-size: 16px;
    line-height: 1.6em;
    text-align: center;
    margin: 10px 0;
}
.contacts{
grid-area: contacts;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
margin-left: 20px;
}
.contacts img{
    width: 45px;
    height: 50px;
    gap: 20px;
    margin-right: 10px;
}
.socials{
    grid-area: socials;
    align-self: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: 20px;
    
}
.socials img{
    width: 60px;
    height: 60px;
    gap: 20px;
    margin: 50px 30px 0 30px;
}
.contacts h2{
   text-align: center;
   font-size: 36px;
}
.socials h2{
    text-align: center;
    font-size: 36px;
}
.contacts p, .socials p{
    font-size: 28px;
    line-height: 1.6em;
    margin-left: 10px;
    
}
h4{
    font-size: 48px;
    text-align: center;
    background: black;
    color: white;
    padding: 20px 0;
    width: 100%;
    max-width: 100%;
   
}
main{
    margin-top: 100px;
    margin-bottom: 0;
    
    
}
/*Home page*/
.hero-banner{
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url('images/Placeholder.Banner.jpg') no-repeat center center/cover;
  
  
  padding: 0 20px;
}
.hero-banner h1 {
  font-size: 64px;
  margin-bottom: 3rem;
  font-weight: 700;
color: #00ffc6;
}
.hero-banner h2 {
  font-size: 36px;
  margin-bottom: 2rem;
  font-weight: 500;
  color: white;
}

.hero-banner p {
  font-size: 28px;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6em;
}


.hero-banner .btn {
  display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    background: transparent;
    border:  2px solid #00ffc6;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 24px;
    color: #00ffc6;
    cursor: pointer;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    text-decoration: none;
  
   
}

.hero-banner .btn:hover {
   background: #00ffc6;
    color: black;
    text-decoration: underline;
    cursor: pointer;
  } 
  .hero-banner .btn a{
    text-decoration: underline;
    color: inherit;
  }

.home-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'picture content';
    gap: 50px;
    height: auto;
    padding: 50px 20px;
    max-width: 100%;
    
    
}
.picture{
    grid-area: picture;
    display: flex;
    justify-content: center;
    align-items: center;
    }
.picture img{
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 198, 0.5);
}
.content{
    grid-area: content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    line-height: 1.6em;
    color: white;
    background: #161616;
    border-radius: 10px;
    border: 2px solid #00ffc6;
    gap: 30px;
}
.content h1{
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #00ffc6;
}
.content p{
    font-size: 27px;
    text-align: center;
    line-height: 1.6em;
    margin-bottom: 40px;
}
.home-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    background: transparent;
    border:  2px solid #00ffc6;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 24px;
    color: #00ffc6;
    cursor: pointer;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    text-decoration: none;
  }
.home-btn:hover{
    background: #00ffc6;
    color: black;
    text-decoration: underline;
  }
  .home-btn a{
    text-decoration: underline;
    color: inherit;
  }



/*About me page*/
.about-me-container{
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    height: auto;
    
    
}
.about-me-content{
    padding: 20px;
    line-height: 1.6em;
    color: white;
    background: #161616;
    border-radius: 10px;
    border: 2px solid #00ffc6;
    gap: 30px;
}
.about-me-content p{
    font-size: 27px;
    text-align: center;
    line-height: 1.6em;
    margin-bottom: 40px;
}
.about-me-content strong{
    font-size: 36px;
    text-align: center;
    
    color: #00ffc6;
}
.about-me-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    background: transparent;
    border:  2px solid #00ffc6;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 24px;
    color: #00ffc6;
    cursor: pointer;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    text-decoration: none;
  }
.about-me-btn:hover{
    background: #00ffc6;
    color: black;
    text-decoration: underline;
  }
  .about-me-btn a{
    text-decoration: none;
    color: inherit;
  }

/*Projects page*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}



/* HERO */
.projects-hero {
  padding: 80px 10%;
  text-align: center;
}

.projects-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.projects-hero p {
  color: #aaa;
  font-size: 1.1rem;
}

/* GRID */
.projects-grid {
  padding: 40px 10%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* CARD */
.project-card {
  background: #161616;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-content {
  padding: 25px;
}

.project-content h2 {
  margin-bottom: 10px;
}

.project-content p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 15px;
}

/* TECH STACK */
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tech-stack span {
  background: #222;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #00ffc6;
}

/* LINKS */
.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.project-links a {
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 30px;
  background: #00ffc6;
  color: #000;
  font-size: 0.9rem;
  font-weight: 600;
}

.project-links a.secondary {
  background: transparent;
  border: 1px solid #00ffc6;
  color: #00ffc6;
}
/*Services page*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0f0f0f;
  color: #fff;
}

/* HERO */
.services-hero {
  padding: 80px 10%;
  text-align: center;
}

.services-hero h1 {
  font-size: 3rem;
}

.services-hero p {
  color: #aaa;
  margin-top: 10px;
}

/* SECTIONS */
.services-section,
.pricing-section {
  padding: 60px 10%;
}

.services-section h2,
.pricing-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.sub-text {
  text-align: center;
  color: #aaa;
  margin-bottom: 40px;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #161616;
  padding: 30px;
  border-radius: 20px;
}


.service-card p {
  color: #ccc;
  font-size: 0.95rem;
}

.service-card span {
  display: block;
  margin-top: 15px;
  font-size: 0.8rem;
  color: #00ffc6;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.price-card {
  background: #161616;
  padding: 35px;
  border-radius: 25px;
  text-align: center;
   border: 2px solid #00ffc6;
}





.price {
  font-size: 1.4rem;
  color: #00ffc6;
  margin-bottom: 20px;
}

.price-card ul {
  list-style: none;
}

.price-card ul li {
  margin: 10px 0;
  color: #ccc;
  font-size: 0.9rem;
}
h6{
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 1.2em;
    color: #00ffc6;
}

/* =========================
   MOBILE RESPONSIVE FIXES
   ========================= */
@media (max-width: 1024px) {
  nav ul {
    gap: 20px;
  }

  nav ul li {
    font-size: 20px;
  }

  h3 {
    font-size: 48px;
  }

  .hero-banner h1 {
    font-size: 48px;
  }

  .hero-banner h2 {
    font-size: 28px;
  }

  .hero-banner p {
    font-size: 22px;
  }
}

/* TABLET & MOBILE */
@media (max-width: 768px) {

  /* HEADER */
  header {
    height: auto;
    padding: 10px 0;
    flex-direction: column;
  }

  header img {
    height: 80px;
    max-width: 60px;
    margin: 0 auto;
  }

  nav {
    width: 100%;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 10px 0;
  }

  nav ul li {
    font-size: 18px;
  }

  main {
    margin-top: 160px; /* prevents content hiding under fixed header */
  }

  /* HERO */
  .hero-banner h1 {
    font-size: 38px;
  }

  .hero-banner h2 {
    font-size: 24px;
  }

  .hero-banner p {
    font-size: 20px;
  }

  .hero-banner .btn {
    font-size: 20px;
    padding: 12px 25px;
  }

  /* HOME SECTION */
  .home-container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "picture"
      "content";
  }

  .content h1 {
    font-size: 30px;
  }

  .content p {
    font-size: 20px;
  }

  /* ABOUT */
  .about-me-content p {
    font-size: 20px;
  }

  .about-me-content strong {
    font-size: 28px;
  }

  /* FOOTER */
  footer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "contacts"
      "socials";
    text-align: center;
  }

  .contacts,
  .socials {
    margin: 20px 0;
  }

  .contacts img,
  .socials img {
    margin: 10px;
  }

  .contacts h2,
  .socials h2 {
    font-size: 28px;
  }

  .contacts p,
  .socials p {
    font-size: 20px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

  h3 {
    font-size: 32px;
  }

  .hero-banner h1 {
    font-size: 30px;
  }

  .hero-banner h2 {
    font-size: 20px;
  }

  .hero-banner p {
    font-size: 18px;
  }

  .hero-banner .btn {
    font-size: 18px;
    padding: 10px 22px;
  }

  .content h1 {
    font-size: 26px;
  }

  .content p,
  .about-me-content p {
    font-size: 18px;
  }

  footer p {
    font-size: 14px;
  }
}
/*Hamburger menu*/
 #menu-toggle {
      font-size: 24px;
      background: none;
      border: none;
      color: black;
      cursor: pointer;
      display: none; /* hidden on desktop */
    }

    

    
@media (max-width: 768px) {
 
  #menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 10px;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }

  #mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 45%;
    right: 50px;
    z-index: 1000;
  }
  
    
  

  #mobile-menu.show {
    display: block;
    animation: slideDown 0.3s ease forwards;
    
  }
  #mobile-menu li a {
    color: honeydew;
    font-size: 20px; /* smaller, mobile-friendly */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    border-bottom: 2px solid white;
    
    
  }
  #mobile-menu ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    background-color: black;
    border-radius: 4px;
    gap: 10px;
    border: 2px solid #00ffc6;
    
  }

  #mobile-menu li {
    
    text-align: center;
  }
   #mobile-menu li a:hover {
    color: #ffcc00; /* highlight color */
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


#menu-toggle::before,
#menu-toggle::after,
#menu-toggle span {
  content: '';
  display: block;
  height: 5px;
  width:40px;
  background-color: #00ffc6;
  margin: 10px 0;
  transition: all 0.3s ease;
}

/* Add span inside button for the middle bar */
#menu-toggle span {
  display: block;
}

/* When open → transform to X */
#menu-toggle.open::before {
  transform: rotate(45deg) translate(5px, 5px);
}

#menu-toggle.open::after {
  transform: rotate(-45deg) translate(5px, -5px);
}

#menu-toggle.open span {
  opacity: 0; /* hide middle bar */
}

  }



