
/* ===========================
   FPS LIMITED
   Luxury Website Styles
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f7f4ed;
    color:#243329;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

/* HEADER */

/*=============================
HEADER
=============================*/

.header{

position:fixed;
top:0;
left:0;
width:100%;
z-index:5000;

background:rgba(16,36,27,.96);

backdrop-filter:blur(12px);

border-bottom:1px solid #b99547;

}

.header-inner{

max-width:1450px;

margin:auto;

padding:12px 45px;

display:flex;

align-items:center;

justify-content:space-between;

}

.logo{

display:flex;

align-items:center;

text-decoration:none;

}

.logo img{

height:100px;
width:auto;
display:block;

}

nav{

display:flex;

gap:55px;

}

nav a{

color:#fff;

font-weight:500;

text-decoration:none;

transition:.3s;

}

nav a:hover{

color:#c9a34b;

}

.header-btn{

padding:16px 34px;

border:2px solid #c9a34b;

color:#c9a34b;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.header-btn:hover{

background:#c9a34b;

color:#183226;

}/* ====================================
   HERO
==================================== */

.hero{

    margin-top:110px;

    display:grid;
    grid-template-columns:45% 55%;

    min-height:850px;

}

.hero-left{

    background:#11281d;

    color:white;

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding:90px;

}

.hero-right{

    overflow:hidden;

}

.hero-right{
    overflow:hidden;
}

.hero-right img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .8s ease;

}

.hero-right:hover img{

    transform:scale(1.04);

}

.eyebrow{

    color:#c8a45b;

    letter-spacing:4px;

    font-size:.9rem;

    margin-bottom:35px;

}

.hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:5.2rem;

    line-height:0.95;

    margin-bottom:30px;

}

.gold-line{

    width:90px;

    height:3px;

    background:#c8a45b;

    margin-bottom:35px;

}

.intro{

    font-size:1.15rem;

    line-height:1.9;

    color:#d9ddd8;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn{

    padding:18px 34px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btn-gold{

    background:#c8a45b;

    color:#11281d;

}

.btn-outline{

    border:2px solid #c8a45b;

    color:#c8a45b;

}

.btn-outline:hover{

    background:#c8a45b;

    color:#11281d;

}/* ===========================
   ABOUT SECTION
=========================== */

.about{
    padding:120px 0;
    background:#f7f4ed;
}

.section-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.section-heading p{
    color:#c8a45b;
    letter-spacing:3px;
    font-size:.9rem;
    margin-bottom:15px;
    font-weight:600;
}

.section-heading h2{
    font-family:'Cormorant Garamond',serif;
    font-size:3rem;
    color:#183226;
    line-height:1.2;
}

.about-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-text p{
    font-size:1.1rem;
    line-height:1.9;
    margin-bottom:25px;
    color:#4b5b52;
}

.about-image img{
    width:100%;
    border-radius:18px;
    display:block;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

@media(max-width:768px){

    .about{
        padding:80px 0;
    }

    .section-heading h2{
        font-size:2.2rem;
    }

    .about-content{
        grid-template-columns:1fr;
        gap:40px;
    }

}
.header-button{

    padding:14px 28px;
    border:2px solid #c8a45b;
    color:#c8a45b;
    text-decoration:none;
    font-weight:600;
    transition:.3s;

}

.header-button:hover{

    background:#c8a45b;
    color:#183226;

}
