/* style.css */

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial,sans-serif;
  background:#0f0f0f;
  color:white;
  overflow-x:hidden;
}

/* HEADER */

.header{
  position:fixed;
  top:0;
  width:100%;
  z-index:1000;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:25px 60px;
  background:rgba(0,0,0,0.45);
  backdrop-filter:blur(12px);
}

.logo{
  font-size:24px;
  font-weight:bold;
  letter-spacing:3px;
}

.nav{
  display:flex;
  gap:30px;
}

.nav a{
  color:white;
  text-decoration:none;
  transition:0.3s;
}

.nav a:hover{
  color:#c9a24e;
}

.hamburger{
  display:none;
  font-size:32px;
  cursor:pointer;
}

/* HERO */

.hero{
  height:100vh;
   background: url("images/foto1.jpeg") center/cover;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:900px;
  padding:20px;
}

.hero-small{
  color:#c9a24e;
  letter-spacing:4px;
}

.hero h1{
  font-size:72px;
  margin:20px 0;
  line-height:1.05;
}

.hero p{
  font-size:22px;
  opacity:0.9;
  line-height:1.7;
}

.btn{
  display:inline-block;
  margin-top:40px;
  padding:16px 34px;
  background:#c9a24e;
  color:black;
  text-decoration:none;
  border-radius:999px;
  font-weight:bold;
  transition:0.3s;
}

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

/* GLOBAL */

.section{
  padding:120px 8%;
}

.container{
  max-width:1400px;
  margin:auto;
}

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

.section-title span{
  color:#c9a24e;
  letter-spacing:4px;
  font-size:14px;
}

.section-title h2{
  font-size:56px;
  margin-top:20px;
  line-height:1.1;
}

.dark{
  background:#171717;
}

/* ABOUT */

.about-intro{
  max-width:900px;
  margin-bottom:70px;
}

.about-intro p{
  font-size:22px;
  line-height:1.8;
  opacity:0.9;
}

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

.about-card{
  background:#1d1d1d;
  padding:40px;
  border-radius:24px;
  transition:0.4s;
  border:1px solid rgba(255,255,255,0.06);
}

.about-card:hover{
  transform:translateY(-10px);
  border-color:#c9a24e;
}

.about-card h3{
  margin-bottom:25px;
  color:#c9a24e;
  font-size:28px;
}

.about-card p{
  line-height:1.9;
  opacity:0.85;
}

.about-card ul{
  margin-bottom:25px;
}

.about-card li{
  margin-bottom:14px;
  line-height:1.6;
}

.signature{
  margin-top:100px;
  text-align:center;
}

.signature h3{
  font-size:44px;
  color:#c9a24e;
  margin-bottom:20px;
}

.signature p{
  font-size:24px;
  line-height:1.8;
}

/* SERVICES */

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

.service-card{
  background:#222;
  padding:40px;
  border-radius:22px;
  transition:0.4s;
}

.service-card:hover{
  transform:translateY(-10px);
}

.service-card h3{
  margin-bottom:20px;
  color:#c9a24e;
}

.service-card p{
  line-height:1.8;
  opacity:0.85;
}

/* SWIPER */

.swiper{
  width:100%;
  height:700px;
  border-radius:24px;
  overflow:hidden;
}

.swiper-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* PROCESS */

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

.process-card{
  background:#222;
  padding:40px;
  border-radius:22px;
}

.number{
  font-size:52px;
  color:#c9a24e;
  margin-bottom:20px;
  font-weight:bold;
}

.process-card h3{
  margin-bottom:20px;
}

.process-card p{
  line-height:1.8;
  opacity:0.85;
}

/* CONTACT */

.contact-form{
  max-width:700px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact-form input,
.contact-form textarea{
  padding:18px;
  border:none;
  border-radius:14px;
  background:#1e1e1e;
  color:white;
  font-size:16px;
}

.contact-form textarea{
  height:180px;
  resize:none;
}

.contact-form button{
  padding:18px;
  border:none;
  border-radius:999px;
  background:#c9a24e;
  cursor:pointer;
  font-weight:bold;
  font-size:16px;
}

/* FOOTER */

footer{
  background:black;
  padding:80px 20px;
  text-align:center;
}

footer h3{
  font-size:36px;
  margin-bottom:20px;
}

footer p{
  opacity:0.7;
}

.footer-links{
  margin:40px 0;
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
}

.footer-links a{
  color:white;
  text-decoration:none;
}

.copyright{
  opacity:0.5;
}

/* MOBILE */

@media(max-width:900px){

  .nav{
    position:fixed;
    top:90px;
    right:-100%;
    width:260px;
    height:calc(100vh - 90px);
    background:#111;
    flex-direction:column;
    padding:40px;
    transition:0.4s;
  }

  .nav.active{
    right:0;
  }

  .hamburger{
    display:block;
  }

  .hero h1{
    font-size:44px;
  }

  .section-title h2{
    font-size:38px;
  }

  .hero p,
  .about-intro p,
  .signature p{
    font-size:18px;
  }

  .swiper{
    height:400px;
  }

  .header{
    padding:20px;
  }

}
.contact-phone{
  text-align:center;
  margin-bottom:50px;
}

.phone-label{
  opacity:0.7;
  font-size:14px;
  letter-spacing:2px;
  margin-bottom:10px;
}

.phone-number{
  font-size:34px;
  color:#c9a24e;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s;
}

.phone-number:hover{
  transform:scale(1.05);
  display:inline-block;
}

