/*==============================
FILE: css/style.css
===============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f8f8f8;
    color:#222;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

header{
    width:100%;
    background:#111;
    position:sticky;
    top:0;
    z-index:999;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:Right;
    padding:18px 0;
}

.logo{
    display:flex;
    align-items:left;
    gap:12px;
}

.logo img{
    width:80px;
    height:80px;
    object-fit:contain;
}

.logo h2{
    color:#D4AF37;
    font-size:24px;
    font-weight:700;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:35px;
}

nav ul li a{
    text-decoration:none;
    color:#fff;
    transition:.3s;
    font-weight:500;
}

nav ul li a:hover,
nav ul li a.active{
    color:#D4AF37;
}

/* HERO */

/*==============================
PREMIUM HERO SECTION
==============================*/

.hero{

    width:100%;
    height:100vh;

    background-image:url("../images/hero.png");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    position:relative;

}

.hero-overlay{

    width:100%;
    height:100%;

    background:linear-gradient(

        rgba(0,0,0,.70),

        rgba(0,0,0,.60)

    );

    display:flex;

    align-items:center;

}

.hero-container{

    display:flex;

    align-items:center;

    height:100%;

}

.hero-text{

    color:#fff;

    max-width:650px;

}

.hero-text h4{

    color:#D4AF37;

    letter-spacing:5px;

    margin-bottom:15px;

    font-size:18px;

}

.hero-text h1{

    font-size:68px;

    margin-bottom:15px;

    line-height:1.1;

}

.hero-text h3{

    font-size:30px;

    font-weight:400;

    margin-bottom:20px;

}

.hero-text p{

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

    color:#e9e9e9;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn{

    background:#D4AF37;

    color:#111;

    padding:15px 38px;

    border-radius:5px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btn:hover{

    background:#b89017;

    color:#fff;

}

.btn-outline{

    padding:15px 38px;

    border:2px solid #D4AF37;

    color:#fff;

    border-radius:5px;

    text-decoration:none;

    transition:.3s;

}

.btn-outline:hover{

    background:#D4AF37;

    color:#111;

}


/* ABOUT */

.about{
    padding:80px 0;
    text-align:center;
}

.about h2{
    color:#D4AF37;
    margin-bottom:20px;
    font-size:34px;
}

.about p{
    max-width:850px;
    margin:auto;
    font-size:18px;
}

/* ASSETS */

.assets{
    background:#111;
    padding:80px 0;
}

.assets h2{
    text-align:center;
    color:#D4AF37;
    margin-bottom:45px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    padding:35px;
    border-radius:10px;
    text-align:center;
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card i{
    font-size:55px;
    color:#D4AF37;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:10px;
}

/* WHY */

.why{
    padding:80px 0;
    text-align:center;
}

.why h2{
    margin-bottom:40px;
    color:#D4AF37;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.why-grid div{
    background:#fff;
    padding:30px;
    border-radius:10px;
    font-size:18px;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.why-grid i{
    display:block;
    font-size:35px;
    margin-bottom:15px;
    color:#D4AF37;
}

/* GALLERY PREVIEW */

.gallery-preview{
    padding:80px 0;
    background:#f3f3f3;
    text-align:center;
}

.gallery-preview h2{
    color:#D4AF37;
    margin-bottom:35px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
    margin-bottom:35px;
}

.gallery-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:8px;
    transition:.4s;
}

.gallery-grid img:hover{
    transform:scale(1.03);
}

/* FOOTER */

footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:50px 20px;
}

.footer-logo{
    width:80px;
    margin-bottom:15px;
}

footer h3{
    color:#D4AF37;
    margin-bottom:10px;
}

footer p{
    margin:8px 0;
}

/* RESPONSIVE */

@media(max-width:768px){

.hero{

height:85vh;

}

.hero-text{

text-align:center;

}

.hero-text h1{

font-size:42px;

}

.hero-text h3{

font-size:22px;

}

.hero-text p{

font-size:16px;

}

.hero-buttons{

justify-content:center;

}

.nav{

flex-direction:column;

}

nav ul{

margin-top:20px;

}

}


/*==============================
GALLERY PAGE
==============================*/

.gallery-grid img{

cursor:pointer;

transition:.4s;

box-shadow:0 8px 20px rgba(0,0,0,.15);

}

.gallery-grid img:hover{

transform:scale(1.05);

box-shadow:0 15px 35px rgba(0,0,0,.3);

}/*==========================
CONTACT PAGE
==========================*/

.contact-section{
    padding:80px 0;
    background:#f8f8f8;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

.contact-info h2{
    color:#D4AF37;
    margin-bottom:20px;
}

.contact-info p{
    margin-bottom:15px;
}

.info-box{
    margin-top:30px;
}

.info-box p{
    margin-bottom:18px;
    font-size:17px;
}

.info-box i{
    color:#D4AF37;
    margin-right:10px;
    width:20px;
}

.contact-form{
    background:#fff;
    padding:35px;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:5px;
    font-size:16px;
    outline:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#D4AF37;
}

.contact-form button{
    border:none;
    cursor:pointer;
}

@media(max-width:768px){

.contact-grid{
    grid-template-columns:1fr;
}
    /*=========================
PREMIUM MOBILE MENU
=========================*/

.hamburger{

display:none;

flex-direction:column;

cursor:pointer;

gap:6px;

z-index:1200;

}

.hamburger span{

width:30px;

height:3px;

background:#fff;

transition:.35s;

}

.overlay{

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.45);

opacity:0;

visibility:hidden;

transition:.35s;

z-index:998;

backdrop-filter:blur(4px);

}

.overlay.show{

opacity:1;

visibility:visible;

}

@media(max-width:768px){

.hamburger{

display:flex;

}

.nav{

justify-content:space-between;

align-items:left;

}

#mobileMenu{

position:fixed;

right:-280px;

top:0;

width:260px;

height:100vh;

background:#111;

transition:.4s;

z-index:999;

padding-top:100px;

box-shadow:-10px 0 30px rgba(0,0,0,.35);

}

#mobileMenu.show{

right:0;

}

#mobileMenu ul{

display:flex;

flex-direction:column;

align-items:flex-start;

padding-left:35px;

gap:30px;

}

#mobileMenu ul li{

list-style:none;

}

#mobileMenu ul li a{

color:#fff;

font-size:18px;

text-decoration:none;

transition:.3s;

}

#mobileMenu ul li a:hover{

color:#D4AF37;

}

}

}
