@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root{
    --gold:#c79a2b;
    --black:#050505;
    --dark:#0b0b0b;
    --gray:#9e9e9e;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    text-decoration:none;
    list-style:none;
    scroll-behavior:smooth;
}

body{
    background:var(--black);
    color:#fff;
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}

/* ================= HEADER ================= */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:70px;
    background:rgba(0,0,0,.95);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 50px;
    z-index:1000;
    border-bottom:1px solid rgba(199,154,43,.2);
}

.logo{
    color:var(--gold);
    font-size:24px;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:white;
    font-size:1.5rem;
    transition:.3s;
}

nav a:hover{
    color:var(--gold);
}

.login{
    color:var(--gold);
}

/* ================= HERO ================= */

.hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.45),
    rgba(0,0,0,.75)),
   url(home.png);
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    padding-left:8%;
    position:relative;
}

.hero-content{
    max-width:550px;
    animation:fadeUp 1.3s ease;
}

.hero h1{
    font-family:'Cinzel',serif;
    font-size:72px;
    line-height:1;
    font-weight:700;
}

.hero span{
    color:var(--gold);
    text-shadow:
    0 0 10px rgba(199,154,43,.5),
    0 0 20px rgba(199,154,43,.3);
}

.hero p{
    margin:20px 0;
    color:#d7d7d7;
    max-width:400px;
}

.hero button{
    background:var(--gold);
    color:black;
    border:none;
    padding:13px 32px;
    cursor:pointer;
    font-weight:600;
    transition:.4s;
}

.hero button:hover{
    transform:translateY(-4px);
    box-shadow:0 0 20px rgba(199,154,43,.5);
}

/* ================= GLOBAL ================= */

section{
    padding:90px 8%;
    
}

section h4{
    text-align:center;
    color:var(--gold);
    font-size:14px;
    margin-bottom:10px;
    letter-spacing:2px;
}

section h2{
    text-align:center;
    font-family:'Cinzel',serif;
    font-size:48px;
    margin-bottom:10px;
}

section h2 span{
    color:var(--gold);
}

.section-text{
    text-align:center;
    color:var(--gray);
    max-width:650px;
    margin:auto;
}

/* ================= SERVICES ================= */

.service-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:60px;
    font-size: 2rem;
    font-family: serif;
}

.service-card{
    border:1px solid rgba(199,154,43,.6);
    padding:40px 30px;
    text-align:center;
    background:#080808;
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 25px rgba(199,154,43,.15);
}

.service-card i{
    font-size:45px;
    color:var(--gold);
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:20px;
    font-size:18px;
}

.service-card p{
    color:var(--gray);
    line-height:1.8;
    margin-bottom:25px;
}

.service-card a{
    color:var(--gold);
    font-size:14px;
}

/* ================= WORKS ================= */

.gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:50px;
}

.item{
    overflow:hidden;
    border:1px solid rgba(199,154,43,.35);
    position:relative;
}

.item img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.6s;
}

.item:hover img{
    transform:scale(1.08);
}

.info{
    position:absolute;
    bottom:0;
    width:100%;
    background:linear-gradient(
    transparent,
    rgba(0,0,0,.95)
    );
    padding:20px;
}

.info h3{
    color:var(--gold);
    font-size:15px;
}

.info p{
    font-size:12px;
}

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:40px;
}

.box{
    border:1px solid rgba(199,154,43,.4);
    text-align:center;
    padding:20px;
}

.box h3{
    color:var(--gold);
    font-size:35px;
}

.box p{
    color:var(--gray);
}
/* ================= CONTACT ================= */

.contact{
    background:#070707;
    font-size: 2rem;
}

.contact-container{
    margin-top:60px;
    display:grid;
    grid-template-columns:1fr 2fr;
    gap:30px;
}

.contact-info{
    border:1px solid rgba(199,154,43,.4);
    padding:30px;
    background:#0b0b0b;
}

.contact-box{
    display:flex;
    gap:15px;
    margin-bottom:30px;
    align-items:flex-start;
}

.contact-box:last-child{
    margin-bottom:0;
}

.contact-box i{
    color:var(--gold);
    font-size:20px;
    margin-top:5px;
}

.contact-box h3{
    font-size:14px;
    margin-bottom:6px;
    color:white;
}

.contact-box p{
    color:var(--gray);
    font-size:14px;
    line-height:1.7;
}

form{
    border:1px solid rgba(199,154,43,.4);
    padding:30px;
    background:#0b0b0b;
}

form h3{
    margin-bottom:25px;
    color:var(--gold);
    font-family:'Cinzel',serif;
}

.row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

form input,
form textarea{
    width:100%;
    background:transparent;
    border:1px solid #222;
    padding:15px;
    color:white;
    outline:none;
    margin-bottom:15px;
    transition:.3s;
}

form input:focus,
form textarea:focus{
    border-color:var(--gold);
    box-shadow:0 0 10px rgba(199,154,43,.2);
}

form textarea{
    min-height:180px;
    resize:none;
}

form button{
    background:var(--gold);
    color:black;
    border:none;
    padding:14px 35px;
    cursor:pointer;
    font-weight:600;
    transition:.4s;
}

form button:hover{
    transform:translateY(-3px);
    box-shadow:0 0 20px rgba(199,154,43,.4);
}

/* ================= FOOTER ================= */

footer{
    border-top:1px solid rgba(199,154,43,.2);
    padding:40px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:30px;
    font-size: 2rem;
  font-family: serif;

}

.footer-logo{
    font: size 75px;
    color:var(--gold);
    margin-bottom:10px;
    margin-right: 1rem;

}

.footer-left p{
    color:var(--gray);
    max-width:350px;
}

.footer-right h3{
    color:var(--gold);
    margin-bottom:15px;
    text-align:center;
}

.social{
    display:flex;
    gap:15px;
}

.social a{
    width:42px;
    height:42px;
    border:1px solid rgba(199,154,43,.4);
    display:flex;
    justify-content:center;
    align-items:center;
    color:var(--gold);
    transition:.4s;
}

.social a:hover{
    background:var(--gold);
    color:black;
    box-shadow:0 0 15px rgba(199,154,43,.4);
}

/* ================= ANIMATIONS ================= */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeLeft{
    from{
        opacity:0;
        transform:translateX(-50px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes fadeRight{
    from{
        opacity:0;
        transform:translateX(50px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes glow{
    0%{
        box-shadow:0 0 5px rgba(199,154,43,.2);
    }

    50%{
        box-shadow:0 0 25px rgba(199,154,43,.5);
    }

    100%{
        box-shadow:0 0 5px rgba(199,154,43,.2);
    }
}

.service-card{
    animation:fadeUp 1s ease;
}

.box{
    animation:glow 4s infinite;
}

/* ================= SCROLLBAR ================= */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#050505;
}

::-webkit-scrollbar-thumb{
    background:var(--gold);
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .service-container{
        grid-template-columns:1fr 1fr;
    }

    .gallery{
        grid-template-columns:1fr 1fr;
    }

    .stats{
        grid-template-columns:1fr 1fr;
    }

    .contact-container{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:55px;
    }
}

@media(max-width:768px){

    header{
        padding:0 20px;
    }

    nav{
        gap:15px;
    }

    nav a{
        font-size:11px;
    }

    .hero{
        padding-left:20px;
        text-align:center;
        justify-content:center;
        .hero-section {
    height: 400px;
    background-image: url("");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        margin:auto;
        margin-top:15px;
        margin-bottom:25px;
    }

    .service-container,
    .gallery,
    .stats{
        grid-template-columns:1fr;
    }

    .row{
        grid-template-columns:1fr;
    }

    section h2{
        font-size:32px;
    }

    footer{
        flex-direction:column;
        text-align:center;
    }
}

@media(max-width:480px){

    .hero h1{
        font-size:34px;
    }

    section{
        padding:70px 20px;
    }

    section h2{
        font-size:26px;
    }
}