/*=========================================
RESET
=========================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:#fff;

    color:#111;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:90%;

    max-width:1400px;

    margin:auto;

}


/*=========================================
HEADER
=========================================*/

.header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
    margin-top: 10px;
}

.header.scrolled{

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(12px);

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    padding:16px 0;

}

.header-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo img{

    width:150px;

}

.nav-links{

    display:flex;

    align-items:center;

    gap:42px;

}

.nav-links li{

    position:relative;

}

.nav-links a{

    font-size:14px;

    font-weight:500;

    text-transform:uppercase;

    letter-spacing:.6px;

    transition:.35s;

    position:relative;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#111;

    transition:.35s;

}

.nav-links a:hover::after{

    width:100%;

}

.nav-links a:hover{

    color:#000;

}


/*=========================================
MOBILE MENU
=========================================*/

.menu-btn{
    width:32px;
    height:24px;
    display:none;
    flex-direction:column;
    justify-content:space-between;
    cursor:pointer;
    z-index:10001;
}

.menu-btn span{
    width:100%;
    height:3px;
    background:#111;
    border-radius:10px;
    transition:.35s;
}

/* Hamburger -> Cross */

.menu-btn.active span:nth-child(1){
    transform:translateY(10px) rotate(45deg);
}

.menu-btn.active span:nth-child(2){
    opacity:0;
}

.menu-btn.active span:nth-child(3){
    transform:translateY(-10px) rotate(-45deg);
}

/*=========================================
HERO
=========================================*/

.hero{

    width:100%;

    height:127vh;
    margin-top: 40px;

    background:url("./images/banner.png") center top no-repeat;

    background-size:100% 100%;

    position:relative;

}
/* Optional Dark Overlay */

.hero-overlay{

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,.03);

    pointer-events: none;

}

/*=========================================
Scroll Indicator
=========================================*/

.scroll-indicator{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

    width:28px;

    height:48px;

    border:2px solid #222;

    border-radius:30px;

    display:flex;

    justify-content:center;

    padding-top:8px;

    z-index:20;

}

.scroll-indicator span{

    width:4px;

    height:8px;

    border-radius:20px;

    background:#222;

}

/*=========================================
Hero Decorative Fade
=========================================*/

.hero::after{

    content:"";

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    height:180px;

    background:linear-gradient(to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,.85),
        #fff);

}

/*=========================================
Selection
=========================================*/

::selection{

    background:#111;

    color:#fff;

}

/*=========================================
Scrollbar
=========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:#222;

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#efefef;

}

html,
body{

    overflow-x:hidden;

}


/*=========================================
ABOUT
=========================================*/

.about{

    width:100%;

    height:110vh;

    background:url("./images/about.png") center center no-repeat;

    background-size:100% 100%;

    position:relative;

}

.about::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(255,255,255,.12),
        rgba(255,255,255,0)
    );

}

.about .container{

    height:100%;

    display:flex;

    align-items:flex-start;

}

.about-content{

    position:relative;

    z-index:2;

    width:500px;

    padding-top:130px;

}

.about-tag{

    display:inline-block;

    font-size:13px;

    font-weight:600;

    letter-spacing:4px;

    color:#8d6b46;

    text-transform:uppercase;

    margin-bottom:20px;

}

.about-title{

    font-size:52px;

    font-weight:700;

    line-height:1;

    color:#7b5730;

    margin-bottom:20px;

}

.about-description{

    font-size:12px;

    line-height:2;

    color:#666;

    margin-bottom:25px;

}

.about-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:180px;

    height:56px;

    background:#111;

    color:#fff;

    border-radius:50px;

    transition:.4s;

}

.about-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 35px rgba(0,0,0,.18);

}


footer{
    position:relative;
    background:#000;
   
    padding-top:70px;
}

/* Gold circle */


.footer-badge{
    position:absolute;
    left:50%;
    top:-82px;
    transform:translateX(-50%);
    width:170px;
    height:170px;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:50;
    margin-top: 50px;
}

.footer-badge svg{
    width:170px;
    height:170px;
    overflow:visible;
    background:#000;
    border-radius:50%;

    /* Infinite Rotation */
    animation: rotateBadge 15s linear infinite;
    transform-origin:center;
}

@keyframes rotateBadge{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

.footer-container{
    width:1180px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    padding:45px 0 40px;
}

.footer-left{
    width:260px;
}

.footer-logo{
    width:170px;
}

.footer-center{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:flex-end;
    padding-top:55px;
}

.social-icons{
    display:flex;
    gap:10px;
}

.social-icons a{
    width:28px;
    height:28px;
    border:1px solid rgba(255,255,255,.7);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:12px;
    transition:.3s;
}

.social-icons a:hover{
    border-color:#d6b46a;
    color:#d6b46a;
}

.footer-right{
    display:flex;
    gap:70px;
}

.footer-right ul{
    list-style:none;
}

.footer-right li{
    color:#fff;
    font-size:13px;
    margin-bottom:12px;
    cursor:pointer;
    transition:.3s;
}

.footer-right li:hover{
    color:#d6b46a;
}

.copyright{
    background:#fff;
    color:#8b8b8b;
    text-align:center;
    font-size:10px;
    padding:14px 0;
    letter-spacing:.5px;
}
