/* ===========================
   GOOGLE FONT & RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#0b0b0b;
    color:white;
    overflow-x:hidden;

}
/* ===========================
      HEADER
=========================== */

/* ===========================
        HEADER
=========================== */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    background:transparent;

    transition:0.4s ease;

}

header .container{

    width:90%;

    max-width:1300px;

    margin:0 auto;

    height:95px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    font-size:42px;

    font-family:'Cinzel',serif;

    letter-spacing:3px;

    font-weight:700;

    color:#ffffff;

    cursor:pointer;

}

.logo span{

    color:#D4AF37;

}

nav ul{

    display:flex;

    align-items:center;

    gap:50px;

    list-style:none;

}

nav ul li{

    list-style:none;

}

nav ul li a{

    text-decoration:none;

    color:#ffffff;

    font-size:18px;

    font-weight:500;

    transition:.3s;

    position:relative;

}

nav ul li a:hover{

    color:#D4AF37;

}

nav ul li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#D4AF37;

    transition:.3s;

}

nav ul li a:hover::after{

    width:100%;

}

/* ===========================
       HERO
=========================== */

.hero{

    min-height:100vh;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    padding-top:95px;

    background:
        linear-gradient(
            rgba(0,0,0,.35),
            rgba(0,0,0,.50)
        ),
        url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=2000&q=80");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}
.overlay{

    position:absolute;

    inset:0;

    background:transparent;

}

.hero-content{

    position:relative;

    text-align:center;

    width:900px;

    max-width:90%;

}

.hero-content h3{

    color:#d4af37;

    letter-spacing:6px;

    font-weight:400;

    margin-bottom:20px;

}

.hero-content h1{

    font-family:'Cinzel',serif;

    font-size:clamp(60px,8vw,90px);

    line-height:1.1;

    margin-bottom:20px;

    letter-spacing:2px;

}

.hero-content p{

    font-size:20px;

    line-height:2;

    color:#dddddd;

    margin-bottom:45px;

}

/* ===========================
       BUTTON
=========================== */

.btn{

    display:inline-block;

    padding:18px 48px;

    border-radius:50px;

    background:#D4AF37;

    color:#111;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.btn:hover{

    transform:translateY(-4px);

    background:#e8c85a;

    box-shadow:0 15px 35px rgba(212,175,55,.4);

}

.subtitle{

    color:#d4af37;

    letter-spacing:6px;

    font-size:14px;

    margin-bottom:20px;

}

.hero-content h2{

    font-size:30px;

    color:white;

    font-weight:300;

    margin-top:10px;

    margin-bottom:30px;

}

.description{

    width:820px;

    max-width:90%;

    margin:auto;

    font-size:22px;

    line-height:1.9;

    color:#e7e7e7;

}

.hero-buttons{

    margin-top:40px;

}

.btn-outline{

    display:inline-block;

    margin-left:20px;

    padding:18px 45px;

    border:2px solid #d4af37;

    color:#d4af37;

    border-radius:40px;

    text-decoration:none;

    transition:.4s;

}

.btn-outline:hover{

    background:#d4af37;

    color:#111;

}
/* ===========================
      ABOUT
=========================== */

.about{

    padding:120px 0;

    background:#111;

}

.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:20px;

    display:block;

    box-shadow:0 25px 50px rgba(0,0,0,.4);

}

.about-content span{

    color:#D4AF37;

    letter-spacing:4px;

    font-size:14px;

}

.about-content h2{

    font-size:48px;

    margin:20px 0;

    font-family:'Cinzel',serif;

    line-height:1.3;

}

.about-content p{

    color:#cfcfcf;

    line-height:2;

    margin-bottom:25px;

}

.features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:40px 0;

}

.features div{

    color:white;

    font-size:18px;

}

/* Responsive */

@media(max-width:900px){

.about-container{

grid-template-columns:1fr;

}

.about-content{

text-align:center;

}

.features{

grid-template-columns:1fr;

}

}
/*===========================
        SERVICES
===========================*/

.services{

    padding:120px 0;

    background:#111;

}

.section-subtitle{

    display:block;

    text-align:center;

    color:#D4AF37;

    letter-spacing:5px;

    font-size:15px;

    margin-bottom:15px;

}

.section-title{

    text-align:center;

    font-size:44px;

    font-family:'Cinzel',serif;

    margin-bottom:20px;

}

.section-text{

    width:760px;

    max-width:90%;

    margin:0 auto 70px;

    text-align:center;

    color:#cfcfcf;

    line-height:1.9;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.service-card{

    background:#1a1a1a;

    border-radius:15px;

    overflow:hidden;

    transition:.4s;

    border:1px solid rgba(212,175,55,.15);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.45);

}

.service-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.service-content{

    padding:30px;

}

.service-content h3{

    color:#D4AF37;

    margin-bottom:15px;

    font-size:24px;

}

.service-content p{

    color:#d5d5d5;

    line-height:1.8;

}
/*===========================
      WHY CHOOSE US
===========================*/

.why-us{

    padding:120px 0;

    background:#0b0b0b;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

.why-card{

    background:#161616;

    padding:45px 35px;

    border-radius:15px;

    border-top:4px solid #D4AF37;

    transition:.4s;

}

.why-card:hover{

    transform:translateY(-10px);

    background:#1d1d1d;

    box-shadow:0 25px 45px rgba(0,0,0,.45);

}

.why-card h3{

    color:#D4AF37;

    font-family:'Cinzel',serif;

    margin-bottom:20px;

    font-size:26px;

}

.why-card p{

    color:#d4d4d4;

    line-height:1.9;

}

/* Responsive */

@media(max-width:992px){

    .why-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .why-grid{

        grid-template-columns:1fr;

    }

}
/*===========================
        CONTACT
===========================*/

/*===========================
        CONTACT
===========================*/

.contact{

    padding:120px 0;

    background:#111;

    text-align:center;

}

.contact-box{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin:70px auto;

    max-width:900px;

}

.contact-item{

    background:#1b1b1b;

    padding:35px;

    border-radius:15px;

    border-top:3px solid #D4AF37;

    transition:.4s;

}

.contact-item:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.4);

}

.contact-item h3{

    color:#D4AF37;

    margin-bottom:15px;

    font-family:'Cinzel',serif;

}

.contact-item p{

    color:#d6d6d6;

}

.contact-buttons{

    display:flex;

    justify-content:center;

    gap:25px;

    margin-top:20px;

}

@media(max-width:768px){

    .contact-box{

        grid-template-columns:1fr;

    }

    .contact-buttons{

        flex-direction:column;

        align-items:center;

    }

}
/*===========================
          FOOTER
===========================*/

.footer{

    background:#080808;

    padding:80px 0 25px;

}

.footer-container{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

    margin-bottom:50px;

}

.footer-logo{

    font-family:'Cinzel',serif;

    font-size:34px;

    margin-bottom:20px;

}

.footer-logo span{

    color:#D4AF37;

}

.footer-column h3{

    color:#D4AF37;

    margin-bottom:25px;

    font-size:22px;

}

.footer-column p{

    color:#cfcfcf;

    line-height:1.9;

    margin-bottom:12px;

}

.footer-column ul{

    list-style:none;

}

.footer-column ul li{

    margin-bottom:14px;

    color:#cfcfcf;

}

.footer-column ul li a{

    color:#cfcfcf;

    text-decoration:none;

    transition:.3s;

}

.footer-column ul li a:hover{

    color:#D4AF37;

}

.footer hr{

    border:none;

    border-top:1px solid rgba(255,255,255,.08);

    margin:30px 0;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:#999;

    font-size:15px;

}

/* Responsive */

@media(max-width:992px){

    .footer-container{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .footer-container{

        grid-template-columns:1fr;

        text-align:center;

    }

    .footer-bottom{

        flex-direction:column;

        gap:10px;

        text-align:center;

    }

}
/*==============================
        JAVASCRIPT EFFECTS
==============================*/

nav ul li a.active{

    color:#D4AF37;

}

nav ul li a.active::after{

    width:100%;

}

.hidden{

    opacity:0;

    transform:translateY(60px);

    transition:all .9s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}

#topBtn{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#D4AF37;

    color:#111;

    font-size:26px;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.4s;

    z-index:999;

}

#topBtn:hover{

    transform:translateY(-6px);

    box-shadow:0 10px 25px rgba(212,175,55,.45);

}

.showTop{

    opacity:1 !important;

    visibility:visible !important;

}