/* RESET */

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


/* BODY */

body{
  background:#050505;
  color:white;
  font-family:'Inter',sans-serif;
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}


/* TOP BAR */

.topbar{
  background:#0d111b;
  color:#c9a14a;
  text-align:center;
  padding:12px;
  font-size:12px;
  letter-spacing:2px;
  border-bottom:1px solid rgba(255,255,255,0.05);
}


/* HEADER */

header{
  width:100%;
  height:125px;
  background:white;
  color:#111;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid rgba(0,0,0,0.06);
  padding:0 70px 0 0;
}


/* LOGO */

.logo-wrap{
  height:100%;
  display:flex;
  align-items:center;
  margin:0;
  padding:0;
  margin-left:20px;
}

.site-logo{
  height:100%;
  width:auto;
  display:block;
  mix-blend-mode:darken;
}

/* NAVIGATION */

nav{
  display:flex;
  align-items:center;
  gap:58px;
  padding-right:40px;
}

nav a{
  font-size:20px;
  font-weight:500;
  letter-spacing:0.3px;
  position:relative;
  transition:0.25s;
  padding:10px 0;
}

nav a:hover{
  color:#c9a14a;
}

/* HERO SECTION */

.hero{
  height:88vh;

  background:
    linear-gradient(to right,
      rgba(0,0,0,0.82),
      rgba(0,0,0,0.25)
    ),

    url('https://images.unsplash.com/photo-1523170335258-f5ed11844a49?q=80&w=1800&auto=format&fit=crop');

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

  display:flex;
  align-items:center;

  padding:0 90px;
}


/* HERO CONTENT */

.hero-content{
  max-width:650px;
}

.hero-sub{
  color:#c9a14a;
  font-size:18px;
  letter-spacing:4px;
  margin-bottom:25px;
}

.hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:96px;
  font-weight:600;
  line-height:0.92;
  margin-bottom:25px;
}

.hero p{
  font-size:19px;
  line-height:1.7;
  color:#d0d0d0;
  margin-bottom:42px;
}


/* BUTTONS */

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

.btn{
  padding:18px 34px;
  font-size:14px;
  letter-spacing:1px;
  font-weight:600;
  transition:0.3s;
}

.btn-gold{
  background:#c9a14a;
  color:black;
}

.btn-gold:hover{
  background:#ddb767;
}

.btn-outline{
  border:1px solid rgba(201,161,74,0.5);
  color:#c9a14a;
}

.btn-outline:hover{
  background:#c9a14a;
  color:black;
}


/* FEATURED SECTION */

.section{
  padding:90px 0;
  background:#050505;
}


/* SECTION TITLE */

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

.small-title{
  color:#c9a14a;
  letter-spacing:3px;
  font-size:14px;
  margin-bottom:16px;
}

.section-title h2{
  font-family:'Cormorant Garamond',serif;
  font-size:60px;
  font-weight:500;
}


/* WATCH GRID */

.watch-grid-wrap{
  width:80%;
  margin:auto;
}

.watch-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}


/* WATCH CARD */

.watch-card{
  background:#0d0d0d;
  border:1px solid rgba(255,255,255,0.08);
  overflow:hidden;
  transition:0.35s;
}

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


/* WATCH IMAGE */

.watch-card img{
  width:100%;
  height:430px;
  object-fit:cover;
}


/* WATCH INFO */

.watch-info{
  padding:30px;
  text-align:center;
}

.watch-brand{
  color:#c9a14a;
  font-size:13px;
  letter-spacing:2px;
  margin-bottom:14px;
}

.watch-name{
  font-family:'Cormorant Garamond',serif;
  font-size:40px;
  margin-bottom:18px;
}

.watch-price{
  color:#d8b46b;
  font-size:28px;
  font-weight:500;
}


/* FOOTER */

footer{
  padding:70px 20px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.06);
  background:#020202;
}

.footer-logo{
  font-family:'Cormorant Garamond',serif;
  font-size:58px;
  color:#c9a14a;
  margin-bottom:10px;
}

footer p{
  color:#888;
  font-size:14px;
}


/* RESPONSIVE */

@media(max-width:1100px){

  header{
    flex-direction:column;
    gap:30px;
    padding:30px;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:22px;
  }

  .hero{
    padding:60px;
  }

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

  .watch-grid{
    grid-template-columns:1fr;
  }

  .watch-grid-wrap{
    width:92%;
  }

}


@media(max-width:700px){

  .hero{
    height:auto;
    padding:100px 25px;
  }

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

  .hero p{
    font-size:16px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  nav{
    gap:18px;
  }

  nav a{
    font-size:13px;
  }

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

}