/* ========================= */
/* style.css */
/* ========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter', sans-serif;
  background:#050505;
  color:#fff;
}

img{
  width:100%;
  display:block;
}

a{
  text-decoration:none;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

section{
  padding:100px 0;
}

/* ========================= */
/* HEADER */
/* ========================= */

.header{
  position:fixed;
  width:100%;
  top:0;
  z-index:999;
  backdrop-filter:blur(12px);
  background:rgba(0,0,0,0.5);
  border-bottom:1px solid rgba(255,255,255,0.05);
}

.nav{
  height:85px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  font-size:1.6rem;
  font-weight:800;
  letter-spacing:2px;
}

.logo span{
  color:#c89b3c;
}

.nav-links{
  display:flex;
  list-style:none;
  gap:35px;
}

.nav-links a{
  color:#fff;
  transition:.3s;
}

.nav-links a:hover{
  color:#c89b3c;
}

/* ========================= */
/* HERO */
/* ========================= */

.hero{
  height:100vh;

  background:
  linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
  url('assets/hero.jpg');

  background-size:cover;
  background-position:center;

  display:flex;
  align-items:center;

  position:relative;
}

.hero-content{
  position:relative;
  z-index:2;
}

.hero-tag{
  color:#c89b3c;
  letter-spacing:3px;
  font-weight:600;
}

.hero h1{
  font-size:4.5rem;
  max-width:850px;
  margin:25px 0;
  line-height:1.1;
}

.hero p{
  max-width:650px;
  color:#cfcfcf;
  line-height:1.8;
  margin-bottom:40px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

/* ========================= */
/* BUTTONS */
/* ========================= */

.btn-primary,
.btn-secondary{
  padding:16px 30px;
  border-radius:10px;
  font-weight:600;
  transition:.3s;
  display:inline-block;
}

.btn-primary{
  background:#c89b3c;
  color:#000;
}

.btn-primary:hover{
  transform:translateY(-4px);
}

.btn-secondary{
  border:1px solid #c89b3c;
  color:#fff;
}

.btn-secondary:hover{
  background:#c89b3c;
  color:#000;
}

/* ========================= */
/* TITLES */
/* ========================= */

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title span{
  color:#c89b3c;
  letter-spacing:2px;
  font-weight:600;
}

.section-title h2{
  font-size:3rem;
  margin-top:15px;
}

/* ========================= */
/* SERVICES */
/* ========================= */

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.service-card{
  background:#101010;
  padding:40px 30px;
  border-radius:18px;
  text-align:center;
  transition:.3s;
  border:1px solid rgba(255,255,255,0.04);
}

.service-card:hover{
  transform:translateY(-8px);
  border-color:#c89b3c;
}

.service-card i{
  font-size:2.3rem;
  color:#c89b3c;
  margin-bottom:20px;
}

.service-card h3{
  margin-bottom:15px;
}

.service-card p{
  color:#bcbcbc;
  line-height:1.7;
}

/* ========================= */
/* GALLERY */
/* ========================= */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:25px;
}

.gallery-item{
  overflow:hidden;
  border-radius:16px;
}

.gallery-item img{
  height:100%;
  object-fit:cover;
  transition:.5s;
}

.gallery-item:hover img{
  transform:scale(1.08);
}

/* ========================= */
/* TESTIMONIALS */
/* ========================= */

.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.testimonial-card{
  background:#101010;
  padding:15px;
  border-radius:18px;
}

/* ========================= */
/* CTA */
/* ========================= */

.cta{
  background:
  linear-gradient(rgba(0,0,0,.8),rgba(0,0,0,.8)),
  url('assets/cta-bg.jpg');

  background-size:cover;
  background-position:center;

  text-align:center;
}

.cta-content span{
  color:#c89b3c;
  letter-spacing:3px;
}

.cta-content h2{
  font-size:3.2rem;
  margin:25px 0;
}

.cta-content p{
  max-width:650px;
  margin:auto;
  color:#cfcfcf;
  line-height:1.8;
  margin-bottom:40px;
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer{
  padding:40px 0;
  border-top:1px solid rgba(255,255,255,0.06);
}

.footer-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
}

.footer h3{
  margin-bottom:10px;
}

.footer p{
  color:#bcbcbc;
}

.socials{
  display:flex;
  gap:20px;
}

.socials a{
  color:#fff;
  font-size:1.4rem;
  transition:.3s;
}

.socials a:hover{
  color:#c89b3c;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:768px){

  .hero h1{
    font-size:3rem;
  }

  .nav-links{
    display:none;
  }

  .section-title h2{
    font-size:2.2rem;
  }

  .cta-content h2{
    font-size:2.3rem;
  }

}