﻿*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    color:#333;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:min(1200px,92%);
    margin:auto;
}

.header{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    border-bottom:1px solid #ececec;
}


.header {
    position: fixed;
   
    height: 90px;

    
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.header.scrolled{
    position:fixed;
    background:#111;
    backdrop-filter:blur(10px);
    transition:.35s;
}

.navbar a{
    color:#fff;
    font-size:15px;
    font-weight:500;
}

.navbar a:hover{
    color:#c9a34a;
}
.btn-contact{

    background:#c9a34a;
    color:#fff;
    padding:12px 24px;
    border-radius:3px;
    transition:.3s;

}

.btn-contact:hover{

    background:#b58b2c;

}






.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo img{
    height:55px;
}

.navbar>ul{
    display:flex;
    gap:35px;
    align-items:center;
}

.navbar li{
    position:relative;
}

.navbar a{
    display:block;
    padding:30px 0;
    font-size:15px;
    transition:.25s;
}

.navbar a:hover{
    color:#b8860b;
}

.submenu{
    position:absolute;
    top:100%;
    left:0;
    min-width:220px;
    background:#fff;
    border:1px solid #eee;
    box-shadow:0 12px 25px rgba(0,0,0,.08);
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.25s;
}

.submenu li a{
    padding:14px 18px;
}

.dropdown:hover .submenu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.menu-toggle{
    display:none;
    width:40px;
    background:none;
    border:0;
    cursor:pointer;
}

    .menu-toggle span {
        display: block;
        height: 3px;
        background: #c8a24b;
        margin: 6px 0;
    }

@media(max-width:992px){

    .navbar {
        display: none;
        position: absolute;
        left: 0;
        top: 80px;
        width: 100%;
        background: #1a1a1a;
    }

.navbar.active{
    display:block;
}

.navbar ul{
    display:block;
}

.navbar a{
    padding:16px 20px;
}

.submenu{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
    box-shadow:none;
    border:none;
    padding-left:20px;
}

.dropdown.open>.submenu{
    display:block;
}

.menu-toggle{
    display:block;
}

}



.hero {
    margin-top: 90px;
    height: calc(100vh - 90px);
    position: relative;
    overflow: hidden;
    height:100vh;

}

.hero-slider{

    width:100%;
    /*height:60%;*/

}

.slide{

    position:absolute;
    inset:0;
    opacity:0;
    transition:.8s;

}

.slide.active{

    opacity:1;
    z-index:2;

}

.slide img{

    width:100%;
    /*height:100%;*/
    object-fit:cover;

}

.overlay{

    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);

}

.hero-content{

    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    color:#fff;
    max-width:600px;

}

.subtitle{

    color:#c8a24b;
    letter-spacing:3px;
    font-size:14px;
    text-transform:uppercase;

}



.hero h1{

    font-size:64px;
    line-height:1.1;
    margin:20px 0;

}

.hero h1 span{

    color:#c8a24b;

}

.hero p{

    font-size:18px;
    line-height:1.8;
    max-width:500px;
    margin-bottom:35px;

}

.btn-gold{

    display:inline-block;
    background:#c8a24b;
    color:#fff;
    padding:16px 36px;
    transition:.3s;

}

.btn-gold:hover{

    background:#a77d20;

}

.slider-btn{

    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border-radius:50%;
    border:none;
    background:rgba(255,255,255,.15);
    color:#fff;
    font-size:22px;
    cursor:pointer;
    backdrop-filter:blur(8px);

}

.prev{

    left:30px;

}

.next{

    right:30px;

}

.dots{

    position:absolute;
    bottom:40px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:12px;

}

.dot{

    width:11px;
    height:11px;
    border-radius:50%;
    background:#ffffff88;
    cursor:pointer;

}

.dot.active{

    background:#c8a24b;

}

@media(max-width:768px){

.hero{

height:75vh;

}

.hero h1{

font-size:40px;

}

.hero p{

font-size:16px;

}

.slider-btn{

display:none;

}

}

.categories{

    padding:100px 0;
    background:#faf8f4;

}

.section-heading{

    text-align:center;
    margin-bottom:60px;

}

.section-heading span{

    color:#c8a24b;
    letter-spacing:4px;
    font-size:13px;
    text-transform:uppercase;

}

.section-heading h2{

    margin:12px 0;
    font-size:42px;
    color:#222;

}

.section-heading p{

    color:#666;
    max-width:650px;
    margin:auto;
    line-height:1.8;

}

.category-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.category-card{

    background:#fff;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.category-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.category-card img{

    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;

}

.category-card:hover img{

    transform:scale(1.08);

}

.category-content{

    padding:30px;

}

.category-content h3{

    font-size:28px;
    margin-bottom:15px;

}

.category-content p{

    color:#666;
    line-height:1.8;
    margin-bottom:20px;

}

.category-content a{

    color:#c8a24b;
    font-weight:600;

}

.category-content a:hover{

    color:#000;

}

@media(max-width:992px){

.category-grid{

grid-template-columns:1fr;

}

}




.about-section{

    padding:120px 0;
    background:#fff;

}

.about-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;
    border-radius:8px;
    display:block;

}

.experience{

    position:absolute;
    bottom:30px;
    right:-25px;

    background:#c8a24b;
    color:#fff;

    width:170px;
    height:170px;

    border-radius:50%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

}

.experience strong{

    font-size:42px;

}

.experience span{

    font-size:15px;

}

.section-subtitle{

    color:#c8a24b;
    letter-spacing:3px;
    font-size:13px;
    text-transform:uppercase;

}

.about-content h2{

    font-size:48px;
    margin:20px 0;

}

.about-content p{

    color:#666;
    line-height:1.9;
    margin-bottom:25px;

}

.about-stats{

    display:flex;
    gap:60px;
    margin:40px 0;

}

.about-stats h3{

    color:#c8a24b;
    font-size:36px;

}

.about-stats span{

    color:#666;

}

@media(max-width:992px){

.about-grid{

grid-template-columns:1fr;

}

.experience{

position:relative;
right:auto;
bottom:auto;
margin-top:-60px;
margin-left:auto;

}

.about-stats{

justify-content:space-between;
gap:20px;

}

}

.artwork-section{

    padding:110px 0;
    background:#f7f5f2;

}

.section-title{

    text-align:center;
    margin-bottom:35px;

}

.section-title span{

    color:#c7a04b;
    letter-spacing:3px;
    font-size:13px;
    text-transform:uppercase;

}

.section-title h2{

    margin:15px 0;
    font-size:46px;

}

.section-title p{

    max-width:650px;
    margin:auto;
    color:#666;
    line-height:1.8;

}

.art-filter{

    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:50px;
    flex-wrap:wrap;

}

.art-filter button{

    background:#fff;
    border:1px solid #ddd;
    padding:12px 24px;
    cursor:pointer;
    transition:.3s;

}

.art-filter button.active,
.art-filter button:hover{

    background:#c7a04b;
    color:#fff;
    border-color:#c7a04b;

}

.art-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:25px;

}

.art-card{

    position:relative;
    overflow:hidden;
    background:#000;

}

.large{

    grid-row:span 2;

}

.art-card img{

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s;

}

.art-overlay{

    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:25px;
    color:#fff;
    background:linear-gradient(to top,rgba(0,0,0,.8),transparent);

}

.art-overlay h3{

    font-size:24px;
    margin-bottom:8px;

}

.art-overlay span{

    color:#ddd;

}

.art-card:hover img{

    transform:scale(1.08);

}

@media(max-width:992px){

.art-grid{

grid-template-columns:1fr;

}

.large{

grid-row:auto;

}

}




.testimonials{

    padding:110px 0;
    background:#ffffff;

}

.testimonial-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.testimonial-card{

    position:relative;
    background:#faf8f4;
    padding:40px;
    border-radius:8px;
    transition:.3s;
    border:1px solid #eee;

}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.quote{

    font-size:80px;
    color:#c7a04b;
    line-height:1;
    margin-bottom:20px;

}

.testimonial-card p{

    color:#666;
    line-height:1.9;
    margin-bottom:35px;

}

.client{

    display:flex;
    align-items:center;
    gap:15px;

}

.client img{

    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;

}

.client h4{

    margin-bottom:5px;

}

.client span{

    color:#888;
    font-size:14px;

}

@media(max-width:992px){

.testimonial-grid{

grid-template-columns:1fr;

}

}


.footer{

    background:#151515;
    color:#ddd;
    padding:80px 0 0;

}

.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;

}

.footer-logo{

    width:180px;
    margin-bottom:25px;

}

.footer p{

    color:#aaa;
    line-height:1.9;

}

.footer h3{

    color:#fff;
    margin-bottom:25px;

}

.footer ul{

    list-style:none;
    padding:0;

}

.footer li{

    margin-bottom:15px;

}

.footer a{

    color:#aaa;
    text-decoration:none;
    transition:.3s;

}

.footer a:hover{

    color:#c7a04b;

}

.social{

    display:flex;
    gap:15px;
    margin-top:25px;

}

.social a{

    width:42px;
    height:42px;
    border:1px solid #444;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.3s;

}

.social a:hover{

    background:#c7a04b;
    border-color:#c7a04b;
    color:#fff;

}

.footer-bottom{

    margin-top:60px;
    border-top:1px solid #2f2f2f;
    padding:25px 0;
    text-align:center;

}

@media(max-width:992px){

.footer-grid{

grid-template-columns:1fr;

}

}


/* Dropdown */

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 20px 40px rgba(0,0,0,.45);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: .35s;
    z-index: 999;
}

.dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    width: 100%;
}

    .submenu li a {
        display: block;
        padding: 14px 24px;
        color: #f3f3f3;
        font-size: 15px;
        font-weight: 400;
        transition: .3s;
    }

        /* Hover */

        .submenu li a:hover {
            background: #2b2b2b;
            color: #c89a3d;
            padding-left: 30px;
        }


.dropdown > a::after {
    content: "▼";
    font-size: 9px;
    margin-left: 8px;
    color: #c89a3d;
}


.header {
    position: absolute;
    width: 100%;
    background: rgba(10,10,10,.88);
    backdrop-filter: blur(12px);
}








/*======================================================
 Recognition Section
======================================================*/

.recognition-section {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

    .section-title span {
        display: inline-block;
        color: #b8893b;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .section-title h2 {
        font-size: 42px;
        color: #222;
        margin-bottom: 20px;
    }

    .section-title p {
        color: #666;
        line-height: 1.8;
        font-size: 17px;
    }

.recognition-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}

.recognition-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

    .recognition-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }

    .recognition-card img {
        width: 100%;
        height: 340px;
        object-fit: cover;
        display: block;
        transition: .5s;
    }

    .recognition-card:hover img {
        transform: scale(1.05);
    }

.recognition-content {
    padding: 25px;
}

    .recognition-content h3 {
        font-size: 24px;
        margin-bottom: 12px;
        color: #222;
    }

    .recognition-content p {
        color: #666;
        line-height: 1.7;
    }

@media(max-width:992px) {

    .recognition-grid {
        grid-template-columns: 1fr;
    }
}




/*=============================
    Inner Banner
=============================*/

.page-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

    .page-hero img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .page-hero .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( rgba(20,20,20,.70), rgba(20,20,20,.55) );
    }

.page-hero-content {
    position: relative;
    z-index: 5;
    color: #fff;
}

.page-hero h1 {
    font-size: 60px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

    .breadcrumb a {
        color: #d7b56d;
        text-decoration: none;
    }

    .breadcrumb span {
        color: #fff;
    }

@media(max-width:992px) {

    .page-hero {
        height: 320px;
    }

        .page-hero h1 {
            font-size: 40px;
        }
}

@media(max-width:576px) {

    .page-hero {
        height: 260px;
    }

        .page-hero h1 {
            font-size: 32px;
        }

    .breadcrumb {
        font-size: 14px;
    }
}

/*Contact us*/
/*=========================
    CONTACT
=========================*/

.contact-section {
    padding: 100px 0;
    background: #f8f5ef;
}

.section-heading {
    max-width: 760px;
    margin: auto;
    text-align: center;
    margin-bottom: 70px;
}

    .section-heading span {
        color: #b88a2b;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-weight: 600;
    }

    .section-heading h2 {
        font-size: 48px;
        margin: 20px 0;
        color: #222;
    }

    .section-heading p {
        color: #666;
        line-height: 1.8;
    }

.contact-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
}

.contact-info {
    background: #222;
    color: #fff;
    padding: 50px;
    border-radius: 10px;
}

.info-box {
    margin-bottom: 40px;
}

    .info-box h3 {
        color: #c89a3d;
        margin-bottom: 12px;
    }

    .info-box p {
        color: #ddd;
        line-height: 1.8;
    }

.contact-form {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    font-size: 15px;
    outline: none;
    border-radius: 6px;
    transition: .3s;
}

    .contact-form input:focus,
    .contact-form textarea:focus {
        border-color: #b88a2b;
    }

.contact-form textarea {
    resize: none;
}

.contact-form button {
    background: #b88a2b;
    color: #fff;
    padding: 16px 40px;
    border: none;
    cursor: pointer;
    transition: .3s;
    border-radius: 4px;
}

    .contact-form button:hover {
        background: #9b741e;
    }

.google-map {
    height: 500px;
}

    .google-map iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

@media(max-width:992px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .row {
        grid-template-columns: 1fr;
    }
}