/* style.css */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#111827;
  color:white;
}

html{
  scroll-behavior:smooth;
}

/* NAVBAR */

.navbar{
  width:100%;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:18px 6%;

  background:#0f172a;

  position:fixed;
  top:0;
  left:0;

  z-index:1000;

  flex-wrap:wrap;
}

/* LOGO */

.logo-box{
  display:flex;
  align-items:center;
  gap:15px;
}

.logo-img{
  width:90px;
  height:90px;

  border-radius:50%;
  object-fit:cover;

  border:3px solid #facc15;

  box-shadow:0 0 35px rgba(250,204,21,0.7);
}

.logo-text{
  color:#facc15;
  font-size:34px;
  font-weight:700;
}

/* NAV LINKS */

.nav-links{
  display:flex;
  gap:30px;
  list-style:none;
}

.nav-links a{
  color:white;
  text-decoration:none;
  font-size:17px;
  transition:0.3s;
}

.nav-links a:hover{
  color:#facc15;
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

  .navbar{
    flex-direction:column;
    gap:15px;
    padding:15px;
  }

  .logo-img{
    width:70px;
    height:70px;
  }

  .logo-text{
    font-size:28px;
  }

  .nav-links{
    width:100%;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;
  }

  .nav-links a{
    font-size:15px;
  }
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 7%;
  background:#0f172a;
}

/* BIGGER LOGO */

.logo-box{
  display:flex;
  align-items:center;
  gap:18px;
}

.logo-img{
  width:95px;
  height:95px;

  border-radius:50%;
  object-fit:cover;

  border:3px solid #facc15;

  box-shadow:0 0 35px rgba(250,204,21,0.7);

  transition:0.4s;
}

.logo-img:hover{
  transform:scale(1.08);
}

.logo-text{
  color:#facc15;
  font-size:38px;
  font-weight:700;
  letter-spacing:2px;
}

.nav-links{
  display:flex;
  list-style:none;
  gap:30px;
}

.nav-links a{
  color:white;
  text-decoration:none;
  font-size:16px;
  transition:0.3s;
}

.nav-links a:hover{
  color:#facc15;
}

.menu-btn{
  display:none;
  background:none;
  border:none;
  color:white;
  font-size:28px;
  cursor:pointer;
}

/* HERO */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  background:
  linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
  url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1200&auto=format&fit=crop');

  background-size:cover;
  background-position:center;
  padding:20px;
}

.hero-content h2{
  font-size:60px;
  margin-bottom:15px;
}

.hero-content p{
  font-size:20px;
  margin-bottom:30px;
}

.btn{
  display:inline-block;
  padding:14px 35px;
  background:#facc15;
  color:black;
  border:none;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.btn:hover{
  transform:scale(1.05);
}

/* SECTION */

section{
  padding:100px 7%;
}

.section-title{
  text-align:center;
  font-size:40px;
  margin-bottom:50px;
  color:#facc15;
}

.service-container{
  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

  gap:30px;
}

.service-card{
  background:rgba(255,255,255,0.05);

  border:1px solid rgba(255,255,255,0.1);

  backdrop-filter:blur(10px);

  padding:35px;

  border-radius:25px;

  transition:0.4s;

  position:relative;

  overflow:hidden;
}

.service-card::before{
  content:'';

  position:absolute;

  width:120px;
  height:120px;

  background:rgba(250,204,21,0.1);

  border-radius:50%;

  top:-40px;
  right:-40px;
}

.service-card:hover{
  transform:translateY(-12px) scale(1.03);

  box-shadow:0 0 35px rgba(250,204,21,0.2);
}

.service-card h3{
  color:#facc15;

  margin-bottom:15px;

  font-size:24px;
}

.service-card p{
  color:#d1d5db;

  line-height:1.7;
}


/* =========================
   WOODRYX PREMIUM GALLERY
========================= */

.gallery{
  padding:100px 7%;
  background:#020617;
}

.gallery-container{

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(320px,1fr));

  gap:30px;
}

/* GALLERY BOX */

.gallery-item{

  position:relative;

  overflow:hidden;

  border-radius:28px;

  height:420px;

  background:#111827;

  border:2px solid rgba(250,204,21,0.12);

  transition:0.5s;

  cursor:pointer;
}

/* IMAGE */

.gallery-item img{

  width:100%;

  height:100%;

  object-fit:cover;

  transition:0.6s;
}

/* HOVER EFFECT */

.gallery-item:hover img{

  transform:scale(1.12);
}

.gallery-item:hover{

  transform:translateY(-10px);

  box-shadow:
  0 0 40px rgba(250,204,21,0.28);
}

/* OVERLAY */

.gallery-overlay{

  position:absolute;

  bottom:0;
  left:0;

  width:100%;

  padding:28px;

  background:
  linear-gradient(
    transparent,
    rgba(0,0,0,0.95)
  );
}

/* TITLE */

.gallery-overlay h3{

  color:#facc15;

  font-size:28px;

  margin-bottom:8px;

  font-weight:700;
}

/* TEXT */

.gallery-overlay p{

  color:#e5e7eb;

  font-size:15px;

  line-height:1.6;
}

/* MOBILE */

@media(max-width:768px){

  .gallery-item{

    height:320px;
  }

  .gallery-overlay h3{

    font-size:22px;
  }

}
/* INSTAGRAM BUTTON */

.instagram-btn{

  position:fixed;

  bottom:200px;
  right:25px;

  width:70px;
  height:70px;

  border-radius:50%;

  display:flex;
  justify-content:center;
  align-items:center;

  background:
  linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );

  box-shadow:
  0 0 30px rgba(225,48,108,0.6);

  z-index:999;

  transition:0.4s;
}

.instagram-btn img{

  width:38px;
}

.instagram-btn:hover{

  transform:scale(1.12);
}
/* BOOKING */

.booking-box{

  text-align:center;

  max-width:600px;

  margin:auto;

  background:#111827;

  padding:50px;

  border-radius:30px;

  border:1px solid rgba(250,204,21,0.15);
}

.booking-box h3{

  color:#facc15;

  font-size:32px;

  margin-bottom:20px;
}

.booking-box p{

  color:#d1d5db;

  margin-bottom:35px;

  line-height:1.7;
}

/* BUTTON */

.book-btn{

  display:inline-block;

  padding:18px 40px;

  background:#25d366;

  color:white;

  text-decoration:none;

  border-radius:50px;

  font-size:20px;

  font-weight:700;

  box-shadow:
  0 0 30px rgba(37,211,102,0.5);

  transition:0.4s;
}

.book-btn:hover{

  transform:scale(1.08);
}

.booking input,
.booking textarea{
  padding:16px;
  border:none;
  border-radius:10px;
  background:#1e293b;
  color:white;
  font-size:16px;
}

.booking textarea{
  height:150px;
  resize:none;
}
.call-btn{
  position:fixed;

  bottom:110px;
  right:25px;

  background:#facc15;
  color:black;

  padding:14px 20px;

  border-radius:40px;

  text-decoration:none;
  font-weight:600;

  z-index:999;
}

.insta-btn{
  position:fixed;

  bottom:190px;
  right:25px;

  background:#e1306c;
  color:white;

  padding:14px 20px;

  border-radius:40px;

  text-decoration:none;

  z-index:999;
}
/* CALL BUTTON */

.call-btn{

  position:fixed;

  bottom:110px;
  right:25px;

  background:#facc15;

  color:black;

  padding:16px 24px;

  border-radius:50px;

  text-decoration:none;

  font-size:18px;

  font-weight:700;

  box-shadow:
  0 0 30px rgba(250,204,21,0.5);

  z-index:999;

  transition:0.4s;
}

.call-btn:hover{

  transform:scale(1.1);

  background:white;
}
 
/* WHATSAPP FLOAT BUTTON */

.whatsapp-float{
  position:fixed;

  bottom:25px;
  right:25px;

  width:70px;
  height:70px;

  background:#25d366;

  border-radius:50%;

  display:flex;
  justify-content:center;
  align-items:center;

  box-shadow:0 0 25px rgba(37,211,102,0.7);

  z-index:999;

  transition:0.4s;
}

.whatsapp-float img{
  width:38px;
}

.whatsapp-float:hover{
  transform:scale(1.12);
}

/* FOOTER */

footer{
  text-align:center;
  padding:40px 20px;
  background:#0f172a;
}

footer h2{
  color:#facc15;
  margin-bottom:10px;
}

/* MOBILE */

@media(max-width:768px){

  .hero-content h2{
    font-size:40px;
  }

  .nav-links{
    position:absolute;
    top:80px;
    right:-100%;
    flex-direction:column;
    background:#0f172a;
    width:250px;
    padding:30px;
    transition:0.4s;
  }

  .nav-links.active{
    right:0;
  }

  .menu-btn{
    display:block;
  }
}