/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, sans-serif;
    background:#ffffff;
    color:#111111;
    overflow-x:hidden;
}

/* =========================
   CONTAINER
========================= */

.container{
    width:95%;
    max-width:1400px;
    margin:auto;
}

/* =========================
   HEADER
========================= */

header{
    width:100%;
    background:#ffffff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.header-area{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo a{
    text-decoration:none;
    font-size:24px;
    font-weight:bold;
    color:#111111;
}

nav ul{
    list-style:none;
    display:flex;
    gap:25px;
}

nav ul li a{
    text-decoration:none;
    color:#111111;
    font-weight:500;
    transition:0.3s;
}

nav ul li a:hover{
    color:#c59d5f;
}

.call-btn{
    background:#111111;
    color:#ffffff;
    padding:12px 22px;
    border-radius:10px;
    text-decoration:none;
    display:inline-block;
}

.call-btn:hover{
    background:#c59d5f;
}

/* =========================
   HERO
========================= */

.hero{
    width:100%;
    height:85vh;
    background:#f5f5f5;
    display:flex;
    align-items:center;
}

.hero-content{
    width:100%;
}

.hero-content h1{
    font-size:60px;
    margin-bottom:20px;
    line-height:1.2;
}

.hero-content p{
    font-size:20px;
    margin-bottom:30px;
}

.hero-btn{
    display:inline-block;
    background:#111111;
    color:#ffffff;
    text-decoration:none;
    padding:15px 30px;
    border-radius:10px;
}

.hero-btn:hover{
    background:#c59d5f;
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
    margin-bottom:10px;
}

.section-title p{
    color:#777777;
}

/* =========================
   GALLERY
========================= */

.gallery-section{
    padding:80px 0;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.gallery-item{
    overflow:hidden;
    border-radius:15px;
    background:#f5f5f5;
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    transition:0.4s;
}

.gallery-item img:hover{
    transform:scale(1.05);
}

/* =========================
   LOAD MORE
========================= */

.load-more-area{
    text-align:center;
    margin-top:40px;
}

#loadMoreBtn{
    background:#111111;
    color:#ffffff;
    border:none;
    padding:15px 30px;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
}

#loadMoreBtn:hover{
    background:#c59d5f;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#111111;
    color:#ffffff;
    padding-top:60px;
    margin-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    padding-bottom:40px;
}

footer h3{
    margin-bottom:20px;
}

footer p{
    color:#cccccc;
    line-height:1.8;
}

footer ul{
    list-style:none;
}

footer ul li{
    margin-bottom:10px;
}

footer ul li a{
    color:#ffffff;
    text-decoration:none;
}

footer ul li a:hover{
    color:#c59d5f;
}

.copy{
    border-top:1px solid rgba(255,255,255,0.1);
    padding:20px;
    text-align:center;
    color:#cccccc;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

    .gallery-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:768px){

    .header-area{
        flex-direction:column;
        gap:15px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero{
        height:70vh;
        text-align:center;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:17px;
    }

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

}

@media(max-width:480px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:30px;
    }

    .hero-content p{
        font-size:15px;
    }

}