:root { --bg:#0b0b0d; --card:#15151a; --accent:#ffcc00; --text:#f5f5f5; --muted:#999; }

*{margin:0;padding:0;box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;}
body{background:var(--bg);color:var(--text);line-height:1.6;}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 55px;
  background: rgba(0, 0, 0, 0.21);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid #22222200;
}
.nav { max-width:1200px;margin:auto;padding:1rem 2rem; display:flex;justify-content:space-between;align-items:center; }
.logo { font-size:0; display:flex;align-items:center; }
.logo img { height:80px; filter: drop-shadow(0 2px 3px rgba(0,0,0,0.769)); margin-left:-10px;margin-top:-5px; }
@media(max-width:768px){ .logo img{ height:60px; } }
.nav a{color:rgb(255,255,255); text-shadow:1px 1px 2px #000; text-decoration:none; margin-left:1rem; transition:0.3s;}
.nav a:hover {transform:translateY(-2px); opacity:0.9;}

/* NAV BUTTON */
.nav-btn {
  display:inline-block;
  padding:0.65rem 1.6rem;
  font-weight:300;
  font-size:0.95rem;
  color:#ffcc00;
  background:#00000067;
  border:1.5px solid #ffcc00;
  border-radius:25px;
  text-decoration:none;
  transition: all 0.3s ease;
  box-shadow:0 0 0 rgba(255,204,0,0);
}
.nav-btn:hover {
  color:#000;
  background:#ffcc0073;
  transform:translateY(-2px) scale(1.03);
  box-shadow:0 0 5px 1px rgba(255,204,0,0.7);
}
@media (max-width: 768px){
  .nav-btn{
    padding: 0.45rem 1rem;
    font-size: 0.75rem;
    border-radius: 20px;
    box-shadow: 0 0 6px rgba(255,204,0,0.4);
  }

  .nav-btn:hover{
    transform: none;
    box-shadow: 0 0 10px rgba(255,204,0,0.7);
  }
}













/* HERO */
.hero{ height:65vh; 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  text-align:center; 
  padding:38vh; 
  position: relative; 
  background-color: #000;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0, 0, 0, 0.52)), url("images/hero.png") center/cover no-repeat;}
.hero-content { transform: translateY(-300px); }
.hero h1{ font-size:6rem; margin-bottom:3rem; transform: translateY(160px); text-shadow:4px 4px 8px rgb(0, 0, 0);}
.hero h2{ font-size:2rem; margin-bottom:1rem;  transform: translateY(200px); text-shadow:4px 4px 8px rgb(0, 0, 0);}
.hero p{ max-width:600px;margin:auto;  transform: translateY(100px); color:#e1e1e1;text-shadow:6px 6px 10px rgb(0, 0, 0);}
.hero-socials{ position:absolute; bottom:30px; left:50%; transform:translateX(-50%); display:flex; gap:14px; z-index:10;}
.hero-socials img{ width:30px;height:30px; cursor:pointer; transition:transform 0.3s ease, filter 0.3s ease;border-radius: 15px;}
.hero-socials img:hover{ transform:scale(1.2); filter: drop-shadow(0 0 12px rgba(255,204,0,0.7));}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero { height:43vh; 
    padding:0.5rem;
    background-color: #000;
    max-height: 70vh;
  }
  .hero-content { transform: translateY(-60px); }
  .hero h1 {
    font-size: 2.5rem; /* smaller on mobile */
    transform: translateY(85px);
  }
  .hero h2 {
    font-size: 1.5rem;
    transform: translateY(110px);
  }
  .hero p {
    font-size: 0.7rem;
    max-width: 90%; /* keep text within screen */
    margin: auto;
    transform: translateY(25px);
  }
  .hero-socials {
    bottom: 5px; /* adjust position for mobile */
    gap: 10px;
  }
  .hero-socials img {
    width: 25px;
    height: 25px;
  }
}



/* SECTIONS */
section{ max-width:1200px; margin:auto; padding:5rem 2rem; }
.h2{text-align:center;margin-bottom:3rem;font-size:2rem;}
.grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:2rem; }
















/* Services Section */
#services {
  background: var(--accent); /* yellow background */
  width: 100%;
  max-width: 100%;
  
  margin: 0;
  padding: 4rem 2rem;
  box-sizing: border-box;
}

#services h2 {
  color: #000; /* black text for heading */
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 400;
}

#services .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

/* Service Cards / Image Boxes */
.service-card, #services .card {
  background: #343434; /* black background */
  color: #f5f5f5;      /* light text for readability */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover, #services .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
  filter: brightness(1.2); /* increase brightness on hover */
}

/* Keep Service images same height and rounded */
#services .card img, .service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(1.5); /* increase brightness by 20% */
  border-radius: 15px;
  margin-bottom: 1rem;
} 

/* Services section text smaller on mobile */
@media (max-width: 768px) {
  #services {
    padding-top: 2.5px !important;   /* reduce space at top of section */
  }
  #services h2 {
    font-size: 24px; /* adjust size as needed */
    line-height: 0.5; /* optional for readability */
    font-weight: 600;
    margin-top: 1.5rem;

  }
  #services h3 {
    font-size: 14px; /* adjust size as needed */
    line-height: 1.5; /* optional for readability */
    font-weight: 400;
    margin-top: 0rem;
    margin-bottom: 0.5rem;
  }
  #services p {
    font-size: 10px; /* adjust size as needed */
    line-height: 1.4; /* optional for readability */
    font-weight: 200;
  }
  #services .grid {
  max-width: 100%;
  gap: 2.5rem;

  margin: auto;
}
  #services .card img, .service-card img {
  width: 100%;
  height: 150px;
  border-radius: 10px;
  margin-bottom: 0.5rem;
} 
}











/* PORTFOLIO */
#portfolio{ background:#fff; color:#000; width:100%; padding:6rem 2rem; max-width:100%; margin:0; box-sizing:border-box; }
#portfolio h2{ text-align:center; margin-bottom:3rem; }
#portfolio .grid{ max-width:1200px; margin:auto; display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:2rem;}
#portfolio .card{ background:#333; color:#000; padding:1rem; border-radius:20px; text-align:center; transition:transform 0.3s;}
#portfolio .card:hover{ transform:translateY(-8px); box-shadow:0 12px 25px rgba(0,0,0,0.15);}
#portfolio .card img{ width:80%; height:200px; object-fit:cover; border-radius:20px; margin-bottom:1rem; }
@media (max-width: 768px) {
  #portfolio {
    padding: 2rem 1rem !important;      /* reduce top/bottom padding to move section up */
  }

  #portfolio h2 {
    font-size: 22px !important;         /* smaller heading */
    margin-top: 0 !important;           /* remove space above heading */
    margin-bottom: 1.5rem !important;   /* less space below heading */
  }

  #portfolio .grid {
    grid-template-columns: repeat(1, 1fr) !important;  /* single column on mobile */
    gap: 1rem !important;                             /* smaller gap between cards */
  }

  #portfolio .card {
    padding: 0.5rem !important;        /* slightly smaller padding */
    border-radius: 15px !important;    /* slightly smaller radius for mobile */
  }

  #portfolio .card img {
    width: 100% !important;           /* full width image for mobile */
    height: 140px !important;         /* adjust height for mobile */
  }
}



/* GALLERY */
#gallery-section{ max-width:1200px; margin:auto; padding:6rem 2rem; background:#0b0b0d; color:var(--accent);}
#gallery-section h2{text-align:center; font-size:2.5rem; margin-bottom:3rem; color:var(--accent); letter-spacing:1px; text-shadow:2px 2px 6px rgba(0,0,0,0.5);}
.gallery-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:15px; }
.gallery-item{ overflow:hidden; border-radius:20px; box-shadow:0 4px 12px rgba(0,0,0,0.5); transition:transform 0.3s, box-shadow 0.3s, border 0.3s; border:2px solid transparent; }
.gallery-item img{ width:100%; height:180px; object-fit:cover; border-radius:20px; transition:transform 0.3s ease;}
.gallery-item:hover{ transform:translateY(-5px); box-shadow:0 8px 20px rgba(0,0,0,0.7); border:2px solid var(--accent);}
.gallery-item:hover img{ transform:scale(1.05); }
/* Mobile adjustments for Gallery */
@media (max-width: 768px) {
  #gallery-section {
    padding: 3rem 1rem !important;  /* reduce top/bottom padding to move section up */
  }

  #gallery-section h2 {
    font-size: 22px !important;      /* smaller heading */
    margin-top: 0 !important;        /* remove space above heading */
    margin-bottom: 1.5rem !important; /* less space below heading */
  }

  .gallery-grid {
    grid-template-columns: repeat(1, 1fr) !important; /* single column on mobile */
    gap: 10px !important;                             /* smaller gap between items */
  }

  .gallery-item {
    border-radius: 15px !important; /* slightly smaller radius */
  }

  .gallery-item img {
    height: 150px !important;       /* adjust image height for mobile */
    object-fit: cover;
  }
}

/* Fade Up Animations */
.fade-up{ opacity:0; transform:translateY(30px); transition:opacity 0.6s ease-out, transform 0.6s ease-out; transition-delay: var(--delay, 0s);}
.fade-up.active{ opacity:1; transform:translateY(0); }

/* FOOTER */
footer{ background:#050506; color:var(--muted); padding:3rem 2rem; font-size:0.9rem; letter-spacing:1px; text-align:center;}
.footer-container{ max-width:1200px; margin:auto; display:flex; flex-direction:column; align-items:center; gap:1rem;}
.footer-logo{ height:50px; }
.footer-social-container{ display:flex; flex-direction:column; align-items:center; gap:0.5rem;}
.footer-social{ display:flex; gap:1rem; justify-content:center; }
.footer-social img{ width:30px;height:30px; transition:transform 0.3s, filter 0.3s; }
.footer-social img:hover{ transform:scale(1.1); filter:brightness(1);}
.wa-img-btn{ position:fixed; bottom:20px; right:20px; z-index:2000; width:60px; height:60px;}
.wa-img-btn img{ width:100%; height:100%; border-radius:50%; cursor:pointer; animation: floatShake 1.5s ease-in-out infinite, glowPulse 1.5s ease-in-out infinite alternate; position:relative; z-index:2; }
.wa-img-btn::before{ content:''; position:absolute; top:50%; left:50%; width:60px;height:60px; background: rgba(37,211,102,0.5); border-radius:50%; transform:translate(-50%, -50%) scale(1); z-index:1; animation: ripple 1.8s infinite; }
@keyframes floatShake{ 0%{ transform:translateY(0) rotate(0deg) scale(1); }25%{transform:translateY(-10px) rotate(-5deg) scale(1.05);}50%{transform:translateY(0) rotate(5deg) scale(1);}75%{transform:translateY(-10px) rotate(-5deg) scale(1.05);}100%{transform:translateY(0) rotate(0deg) scale(1);} }
@keyframes glowPulse{0%{box-shadow:0 0 6px rgba(37,211,102,0.4),0 0 12px rgba(37,211,102,0.2);}50%{box-shadow:0 0 18px rgba(37,211,102,0.8),0 0 36px rgba(37,211,102,0.4);}100%{box-shadow:0 0 6px rgba(37,211,102,0.4),0 0 12px rgba(37,211,102,0.2);}}
@keyframes ripple{0%{transform:translate(-50%,-50%) scale(1);opacity:0.7;}50%{transform:translate(-50%,-50%) scale(1.6);opacity:0.4;}100%{transform:translate(-50%,-50%) scale(2);opacity:0;}}

/* Lightbox title */
.glightbox-container .gslide-description { color:#ffcc00; font-weight:600; font-size:1rem; text-align:center; text-shadow:1px 1px 3px #000; }











/* FORCE MOBILE 2-COLUMN LAYOUT */
@media (max-width: 768px){

  #services .grid,
  #portfolio .grid,
  #gallery-section .gallery-grid{
    grid-template-columns: repeat(2, 1fr) !important;
  }

  #services .card,
  #portfolio .card{
    padding: 1rem;
  }

  #services .card img,
  #portfolio .card img,
  #gallery-section .gallery-item img{
    height: 120px;
  }
}
@media (max-width: 768px) {
  .grid,
  #services .grid,
  #portfolio .grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
