:root{
    --bg:#14100c;
    --bg2:#0d0a08;
    --gold:#c9a24b;
    --gold2:#e6c877;
    --amber:#7a4b2a;
    --cream:#f5ecd7;
    --text:#cbbfa8;
    --title:'Playfair Display',serif;
    --body:'Poppins',sans-serif;
}

*{box-sizing:border-box;}

body{
    background:var(--bg);
    color:var(--cream);
    font-family:var(--body);
    overflow-x:hidden;
}

h1,h2,h3,h4,h5{font-family:var(--title);}

/* Navbar */

.custom-navbar{
    background:var(--bg2);
    padding:18px 0;
    border-bottom:1px solid rgba(201,162,75,0.5);
}

.navbar-brand{
    color:var(--gold2)!important;
    font:600 1.6rem var(--title);
}

.brand-icon{
    color:var(--gold);
    margin-left:6px;
}

.nav-link{
    color:var(--cream)!important;
    margin:0 10px;
    position:relative;
    transition:.3s;
}

.nav-link:hover{color:var(--gold2)!important;}

.nav-link::after{
    content:"";
    position:absolute;
    bottom:-4px;
    right:0;
    width:0;
    height:1px;
    background:var(--gold);
    transition:.3s;
}

.nav-link:hover::after{width:100%;}

/* Hero */

.hero-section{
    background:linear-gradient(var(--bg2),var(--bg));
    padding:20px 0px 90px 0px;
}

.hero-subtitle{
    color:var(--gold);
    letter-spacing:3px;
    text-align: center;
}

.hero-title{
    font:700 3.2rem var(--title);
    margin:20px 0;
}

.hero-title span{
    color:var(--gold2);
}

.hero-desc{
    color:var(--text);
    line-height:1.8;
    margin-bottom:30px;
    margin-left: 50px;
}

.btn-luxury{
    background:var(--gold);
    color:var(--bg2);
    padding:12px 34px;
    border:0;
    transition:.3s;
    display: block;
    margin:  auto;
    width: 150px;
}

.btn-luxury:hover{
    background:var(--gold2);
    transform:translateY(-2px);
}

.hero-img-wrap{
    position:relative;
    text-align:center;
}

.hero-img{
    max-height:480px;
    object-fit:cover;
    border-radius:6px;
    box-shadow:0 25px 60px rgba(0,0,0,.6);
}

.discount-badge{
    position:absolute;
    left:-10px;
    bottom:-30px;
    width:100px;
    height:100px;
    border-radius:50%;
    background:var(--gold);
    color:var(--bg2);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.discount-badge span{font-size:.75rem;}
.discount-badge strong{font-size:.9rem;}

/* Sections */

.collection-section{
    padding:90px 0;
    background:var(--bg);
}

.catalog-section{ 
  padding:90px 0;
  background:var(--bg2);
}

.section-title{
  font:600 2.2rem var(--title);
}

.section-subtitle,
.product-card .card-text,
.footer{
  color:var(--text);
}

/* Cards */

.product-card{
  background:var(--bg2);
  border:1px solid rgba(201,162,75,.2);
  border-radius:8px;
  overflow:hidden;
  transition:.4s ease;
  position:relative;
}

.product-card:hover{
  transform:translateY(-8px) scale(1.03);
  border-color:#FFD700;
  z-index:100;
  box-shadow: 0 0 30px var(--gold)
}
.product-card img{
  height:320px;
  object-fit:cover;
}

.card-title{
  color:var(--gold2);
  font-family:var(--title);
}

.price{
  color:var(--gold);
  font-weight:600;
}

/* Intro */

.intro-strip{
  background:var(--amber);
  padding:40px 0;
  text-align:center;
  list-style: 1.6px;
}

.intro-strip p{
  max-width:800px;
  margin:auto;
  line-height:1.9;
  font:1.15rem var(--title);
}

/* Table */

.catalog-table{
  width:100%;
  color:var(--cream);
}

.catalog-table thead{
  background:var(--amber);
}

.catalog-table th,
.catalog-table td{
  padding:14px;
  border-bottom:1px solid rgba(201,162,75,.15);
}

.catalog-table tbody tr:hover{
  background:rgba(201,162,75,.08);
}

/* Contact */

.contact-box{
  padding:40px;
}

.form-label{
  color:var(--gold2);
}

.form-control{
  background:var(--bg);
  color:var(--cream);
  border:1px solid rgba(201,162,75,.25);
}

.form-control:focus{
  background:var(--bg);
  color:var(--cream);
  border-color:var(--gold);
  box-shadow:0 0 0 .15rem rgba(201,162,75,.25);
}

.form-control::placeholder{
  color:var(--text);
}

.form-feedback{
  color:var(--gold2);
}

/* Footer */

.footer{
  background:var(--bg2);
  padding:24px 0;
  text-align:center;
}

@media(max-width:991px){
  .hero-title{font-size:2.4rem;}
  .hero-img-wrap{margin-top:40px;}
}