body{
    font-family:'Poppins',sans-serif;
    color:#333;
}

h1,h2,h3,h4,h5,h6{
    font-family:'Playfair Display',serif;
}

/* TOP BAR */

.top-bar{
    background:#111;
    color:#fff;
    padding:8px 0;
    font-size:14px;
}

/* NAVBAR */

.custom-nav{
    background:#1a1a1a;
}

.navbar-brand{
    font-weight:800;
    color:#d4af37 !important;
    font-size:28px;
}

.nav-link{
    color:#fff !important;
    margin-left:10px;
}

.nav-link:hover{
    color:#d4af37 !important;
}

.btn-gold{
    background:#d4af37;
    color:#000;
    font-weight:600;
    border-radius:30px;
    padding:10px 25px;
}

.btn-gold:hover{
    background:#c49b1e;
}

/* HERO */

.hero-section{
    min-height:90vh;

    background:
    linear-gradient(
    rgba(0,0,0,.55),
    rgba(0,0,0,.55)
    ),
    url('../images/hero.jpg');

    background-size:cover;
    background-position:center;
}

.hero-section h1{
    font-size:70px;
}

.hero-section p{
    font-size:22px;
}

/* CARDS */

.card{
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
}

/* SECTION */

section{
    overflow:hidden;
}

/* FOOTER */

.footer{
    background:#111;
    color:#fff;
    padding:60px 0 20px;
}

.footer h4{
    color:#d4af37;
    margin-bottom:20px;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
}

.footer-links a:hover{
    color:#d4af37;
}

.social-icons a{
    color:#fff;
    margin-right:15px;
    font-size:20px;
}

.social-icons a:hover{
    color:#d4af37;
}

/* RESPONSIVE */

@media(max-width:768px){

.hero-section h1{
    font-size:42px;
}

.hero-section p{
    font-size:18px;
}

.navbar-brand{
    font-size:22px;
}

}