/* =========================
   GLOBAL
========================= */

body{

    background:#0d0d0d;

    color:#fff;

    font-family:'Poppins',sans-serif;

    overflow-x:hidden;

}

section{

    padding:120px 8%;

}

.container{

    max-width:1400px;

    margin:auto;

}

h1,h2,h3{

    font-family:'Playfair Display',serif;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:#D4AF37;

    letter-spacing:3px;

    font-size:.9rem;

}

.section-title h2{

    margin-top:15px;

    font-size:3rem;

}

/* =========================
   HERO
========================= */

.hero{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    position:relative;

    background:
    linear-gradient(
    rgba(0,0,0,.7),
    rgba(0,0,0,.7)
    ),
    url('../assets/images/hero/hero.jpg');

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

}

.hero-content{

    max-width:850px;

}

.hero-tag{

    color:#D4AF37;

    letter-spacing:4px;

}

.hero h1{

    font-size:5rem;

    margin:25px 0;

}

.hero p{

    color:#cfcfcf;

    font-size:1.1rem;

    line-height:1.8;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-gold{

    background:#D4AF37;

    color:#000;

    padding:16px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

}

.btn-outline{

    border:1px solid #D4AF37;

    color:#D4AF37;

    padding:16px 35px;

    border-radius:50px;

    text-decoration:none;

}

/* =========================
   ABOUT PREVIEW
========================= */

.about-preview{

    background:#111;

}

.about-preview .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.about-preview img{

    width:100%;

    border-radius:25px;

}

.about-text h2{

    font-size:3rem;

    margin-bottom:20px;

}

.about-text p{

    color:#bbb;

    line-height:1.9;

}

/* =========================
   WHY US
========================= */

.why-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

}

.why-card{

    background:#181818;

    padding:40px;

    border-radius:20px;

    text-align:center;

    border:1px solid #222;

}

.why-card:hover{

    border-color:#D4AF37;

    transform:translateY(-8px);

}

/* =========================
   STATS
========================= */

.stats{

    background:#111;

}

.stats-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

}

.stat-box{

    background:#181818;

    padding:40px;

    text-align:center;

    border-radius:20px;

}

.stat-box h3{

    color:#D4AF37;

    font-size:3rem;

}

/* =========================
   SERVICES
========================= */

.service-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:25px;

}

.service-card{

    background:#181818;

    border-radius:20px;

    overflow:hidden;

    border:1px solid #222;

}

.service-card img{

    width:100%;

    height:250px;

    object-fit:cover;

}

.service-content{

    padding:25px;

}

.service-content h3{

    margin-bottom:15px;

}

.service-content p{

    color:#bbb;

}

/* =========================
   GALLERY
========================= */

.gallery-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:20px;

}

.gallery-item{

    overflow:hidden;

    border-radius:20px;

}

.gallery-item img{

    width:100%;

    height:300px;

    object-fit:cover;

    transition:.8s;

}

.gallery-item:hover img{

    transform:scale(1.1);

}

/* =========================
   TESTIMONIAL
========================= */

.testimonial{

    background:#111;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:25px;

}

.testimonial-card{

    background:#181818;

    padding:35px;

    border-radius:20px;

}

.testimonial-card p{

    color:#bbb;

    margin:20px 0;

}

/* =========================
   PROMO
========================= */

.promo-banner{

    text-align:center;

    padding:140px 8%;

    background:
    linear-gradient(
    rgba(0,0,0,.7),
    rgba(0,0,0,.7)
    ),
    url('../assets/images/promo/promo.jpg');

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

}

.promo-banner h1{

    font-size:5rem;

    color:#D4AF37;

}

.promo-banner p{

    margin:20px 0;

}

/* =========================
   CTA
========================= */

.cta{

    text-align:center;

}

.cta h2{

    font-size:3rem;

    margin-bottom:20px;

}

.cta p{

    color:#bbb;

    margin-bottom:30px;

}

/* =========================
   INSTAGRAM
========================= */

.insta-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:15px;

}

.insta-item{

    background:#181818;

    height:250px;

    border-radius:20px;

}

/* =========================
   FOOTER
========================= */

footer{

    background:#080808;

    padding:80px 8%;

    text-align:center;

    border-top:1px solid #1a1a1a;

}

.footer-logo{

    font-size:2rem;

    color:#D4AF37;

    margin-bottom:20px;

}

.footer-links{

    display:flex;

    justify-content:center;

    gap:25px;

    margin-bottom:25px;

}

.footer-links a{

    color:#bbb;

    text-decoration:none;

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

.hero h1{

    font-size:3rem;

}

.about-preview .container{

    grid-template-columns:1fr;

}

.stats-grid{

    grid-template-columns:1fr 1fr;

}

.insta-grid{

    grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.stats-grid{

    grid-template-columns:1fr;

}

.hero-buttons{

    flex-direction:column;

}

.section-title h2{

    font-size:2.3rem;

}

}