@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Poppins:wght@300;400;500&family=Playfair+Display:wght@400;600&display=swap');

/* ================= ROOT ================= */

:root{
  --black:#0b0b0b;
  --gold:#c9a24d;
  --grey:#bdbdbd;
  --soft:#1c1c1c;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:var(--black);
  color:var(--grey);
  font-family:'Poppins', sans-serif;
  line-height:1.7;
}

/* ================= HEADER (FINAL & STABLE) ================= */

.site-header{
  background:var(--black);
  border-bottom:1px solid #222;
}

.header-inner{
  max-width:1400px;
  margin:0 auto;
  padding:8px 60px;              /* tight height */
  display:flex;
  align-items:center;
}

/* LOGO */
.logo-wrap{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo-wrap img{
  height:90px;                   /* slightly bigger than text */
  width:auto;
  display:block;
}

.logo-text{
  font-family:'Cinzel', serif;
  color:var(--gold);
  font-size:40px;                /* controls header height */
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  white-space:nowrap;
  line-height:1;                 /* critical for tight header */
}

/* NAVIGATION */
.main-nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:28px;
}

.main-nav a{
  color:#d1d1d1;
  text-decoration:none;
  font-size:14px;
  line-height:1;
  position:relative;
}

.main-nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:1px;
  background:var(--gold);
  transition:.3s;
}

.main-nav a:hover::after{
  width:100%;
}

/* ================= HERO ================= */

.hero{
  min-height:90vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 20px;
  background:
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.85)),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c');
  background-size:cover;
  background-position:center;
}

.hero h1{
  font-family:'Playfair Display', serif;
  color:#fff;
  font-size:48px;
  max-width:900px;
}

.hero p{
  margin:20px auto;
  max-width:600px;
  font-size:15px;
}

.hero .btn{
  margin-top:30px;
}

/* ================= BUTTON ================= */

.btn{
  display:inline-block;
  padding:14px 36px;
  border:1px solid var(--gold);
  color:var(--gold);
  text-decoration:none;
  font-size:14px;
  letter-spacing:1px;
  transition:.3s;
}

.btn:hover{
  background:var(--gold);
  color:#000;
}

/* ================= SECTIONS ================= */

.section{
  padding:100px 70px;
}

.section h2{
  font-family:'Playfair Display', serif;
  color:#fff;
  font-size:32px;
  margin-bottom:20px;
}

.section h2::after{
  content:'';
  display:block;
  width:60px;
  height:2px;
  background:var(--gold);
  margin-top:12px;
}

/* ================= CARDS ================= */

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  margin-top:50px;
}

.card{
  background:var(--soft);
  padding:35px;
  border:1px solid #222;
  transition:.3s;
}

.card:hover{
  border-color:var(--gold);
  transform:translateY(-6px);
}

/* ================= FOOTER ================= */

footer{
  background:#080808;
  padding:40px 20px;
  text-align:center;
  border-top:1px solid #222;
  font-size:13px;
  color:#888;
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){
  .header-inner{
    flex-direction:column;
    gap:14px;
  }
  .main-nav{
    margin-left:0;
  }
}

@media(max-width:768px){
  .hero h1{
    font-size:34px;
  }
  .section{
    padding:70px 25px;
  }
}

/* ================= CONTACT SECTION ================= */

.contact-section{
  background:#0f0f0f;
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  margin-top:40px;
}

.contact-box{
  background:var(--soft);
  padding:30px;
  border:1px solid #222;
  transition:.3s;
}

.contact-box:hover{
  border-color:var(--gold);
}

.contact-box h4{
  color:var(--gold);
  font-size:16px;
  margin-bottom:10px;
  letter-spacing:1px;
}

.contact-box p{
  font-size:14px;
  color:#ccc;
}

