*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

body{
  overflow-x:hidden;
  background:#0e0e0e;
  color:white;
}

/* HERO */

.t-hero{
  height:100vh;
  background:url('t10.jpg');
  background-size:cover;
  background-position:center;
  position:relative;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
}

.hero-text{
  position:relative;
  z-index:2;
}

.hero-text h1{
  font-size:70px;
  margin-bottom:20px;
}

.hero-text p{
  font-size:22px;
}

/* SECTIONS */

.t-section{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:60px;
  padding:100px 10%;
}

.reverse{
  flex-direction:row-reverse;
}

.t-img{
  flex:1;
}

.t-img img{
  width:100%;
  border-radius:20px;
  box-shadow:0 10px 40px rgba(0,0,0,0.5);
}

.t-text{
  flex:1;
}

.t-text h2{
  font-size:45px;
  margin-bottom:20px;
  color:#d4af37;
}

.t-text p{
  font-size:20px;
  line-height:1.8;
  color:#ddd;
}

/* FINAL SECTION */

.t-end{
  height:60vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:#111;
}

.t-end h1{
  font-size:40px;
  margin-bottom:30px;
}

/* BUTTON */

.btn{
  padding:15px 40px;
  background:#d4af37;
  color:black;
  text-decoration:none;
  font-weight:bold;
  border-radius:30px;
}

/* MOBILE */

@media(max-width:768px){

  .hero-text h1{
    font-size:40px;
  }

  .t-section,
  .reverse{
    flex-direction:column;
    padding:60px 8%;
  }

  .t-text h2{
    font-size:30px;
  }

  .t-text p{
    font-size:16px;
  }

}