/* ===================================
   HORSE CROWN GLOBAL
=================================== */

:root {

    --black: #001205;
    --dark-black: #081705;
    --gold: #D4AF37;
    --light-gold: #F5D77A;
    --silver: #C0C0C0;
    --white: #ffffff;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:var(--black);
    color:var(--white);
    overflow-x:hidden;

}

h1,h2,h3,h4,h5,h6{

    font-family:'Cormorant Garamond',serif;

}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

img{
    max-width:100%;
    display:block;
}

section{
    position:relative;
}

.container{
    max-width:1300px;
}

/* ===================================
   PREMIUM NAVBAR
=================================== */

.custom-navbar{

    padding:18px 0;
    transition:.4s;
    z-index:9999;

}

.custom-navbar.scrolled{

    background:rgba(0,0,0,.95);

    backdrop-filter:blur(20px);

    box-shadow:0 0 30px rgba(212,175,55,.15);

}

.logo-area{

    display:flex;
    align-items:center;
    gap:12px;

}

.logo-area img{

    width:58px;

}

.logo-text{

    display:flex;
    flex-direction:column;

}

.logo-text span{

    color:var(--gold);

    font-weight:700;

    letter-spacing:2px;

    font-size:18px;

}

.logo-text small{

    color:white;

    letter-spacing:4px;

    font-size:10px;

}

.navbar-nav{

    gap:15px;

}

.nav-link{

    color:white;
    font-size:15px;
    font-weight:500;
    position:relative;

}

.nav-link:hover{

    color:var(--gold);

}

.nav-link::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-4px;

    width:0;

    height:1px;

    background:var(--gold);

    transition:.4s;

}

.nav-link:hover::after{

    width:100%;

}

.join-btn{

    background:linear-gradient(
    135deg,
    #D4AF37,
    #F5D77A);

    color:black;

    padding:13px 28px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

    display:flex;
    align-items:center;
    gap:10px;

}

.join-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 0 25px rgba(212,175,55,.45);

    color:black;

}

.navbar-toggler{

    color:white;

    font-size:28px;

}

/* MOBILE MENU */

.mobile-menu{

    background:#0b0b0b;

    width:290px;

}

.mobile-menu h5{

    color:var(--gold);

    letter-spacing:2px;

}

.mobile-menu ul{

    padding:20px 0;

}

.mobile-menu ul li{

    margin-bottom:20px;

}

.mobile-menu ul li a{

    color:white;

    font-size:18px;

    transition:.3s;

}

.mobile-menu ul li a:hover{

    color:var(--gold);

}

/* ===================================
   HERO SECTION
=================================== */

.hero-section{

    position:relative;

    background:
    radial-gradient(circle at top right,
    rgba(212,175,55,.15),
    transparent 40%),

    radial-gradient(circle at bottom left,
    rgba(212,175,55,.10),
    transparent 40%),

    #001205;

    overflow:hidden;

    padding-top:120px;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:url("https://www.transparenttextures.com/patterns/carbon-fibre.png");

    opacity:.15;

}

.hero-content{

    position:relative;
    z-index:2;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    border:1px solid rgba(212,175,55,.4);

    padding:10px 20px;

    border-radius:50px;

    color:var(--gold);

    margin-bottom:25px;

    font-size:14px;

}

.hero-content h1{

    font-size:70px;

    line-height:1.1;

    margin-bottom:25px;

    color:white;

}

.hero-content h1 span{

    display:block;

    color:var(--gold);

}

.hero-content p{

    color:#d8d8d8;

    font-size:18px;

    line-height:1.9;

    max-width:600px;

}

.hero-btns{

    display:flex;

    gap:20px;

    margin-top:35px;

}

.hero-btn-outline{

    border:1px solid var(--gold);

    color:var(--gold);

    padding:13px 30px;

    border-radius:50px;

    transition:.4s;

}

.hero-btn-outline:hover{

    background:var(--gold);

    color:black;

}

.hero-image{

    position:relative;

    text-align:center;

}

.hero-image img{

    width:100%;

    max-width:600px;

    animation:floatLogo 4s ease-in-out infinite;

    filter:
    drop-shadow(0 0 30px rgba(212,175,55,.25));

}

@keyframes floatLogo{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* Stats */

.hero-stats{

    padding-bottom:80px;

}

.stat-box{

    background:rgba(255,255,255,.03);

    border:1px solid rgba(212,175,55,.15);

    padding:30px;

    text-align:center;

    border-radius:20px;

    backdrop-filter:blur(10px);

    transition:.4s;

}

.stat-box:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

}

.stat-box h3{

    color:var(--gold);

    font-size:36px;

    margin-bottom:10px;

}

.stat-box span{

    color:#cfcfcf;

}

/* Responsive */

@media(max-width:991px){

    .hero-content{

        text-align:center;

        margin-bottom:50px;

    }

    .hero-content h1{

        font-size:50px;

    }

    .hero-btns{

        justify-content:center;

        flex-wrap:wrap;

    }

}

@media(max-width:576px){

    .hero-content h1{

        font-size:40px;

    }

    .hero-content p{

        font-size:15px;

    }

    .hero-tag{

        font-size:12px;

    }

}

/* ===================================
   ABOUT SECTION
=================================== */

.about-section{

    padding:120px 0;

    position:relative;

}

.about-image{

    position:relative;

    text-align:center;

}

.about-image img{

    max-width:420px;

    width:100%;

    position:relative;

    z-index:2;

}

.about-glow{

    position:absolute;

    width:320px;

    height:320px;

    background:rgba(212,175,55,.15);

    border-radius:50%;

    filter:blur(80px);

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

}

.about-content{

    position:relative;

}

.section-tag{

    display:inline-block;

    color:var(--gold);

    letter-spacing:3px;

    font-size:14px;

    margin-bottom:20px;

}

.about-content h2{

    font-size:58px;

    line-height:1.1;

    margin-bottom:25px;

}

.about-content h2 span{

    color:var(--gold);

}

.about-content p{

    color:#cfcfcf;

    line-height:1.9;

    font-size:16px;

}

.about-features{

    margin-top:40px;

    display:flex;

    flex-direction:column;

    gap:20px;

}

.feature-card{

    display:flex;

    align-items:flex-start;

    gap:20px;

    padding:25px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(212,175,55,.15);

    border-radius:18px;

    transition:.4s;

}

.feature-card:hover{

    transform:translateX(10px);

    border-color:var(--gold);

}

.feature-card i{

    color:var(--gold);

    font-size:28px;

    min-width:40px;

}

.feature-card h5{

    color:white;

    margin-bottom:8px;

}

.feature-card p{

    margin:0;

    color:#bfbfbf;

    font-size:14px;

}

@media(max-width:991px){

    .about-content{

        text-align:center;

    }

    .about-content h2{

        font-size:42px;

    }

    .feature-card{

        text-align:left;

    }

}

@media(max-width:576px){

    .about-section{

        padding:80px 0;

    }

    .about-content h2{

        font-size:34px;

    }

}

/* ===================================
   WHY CHOOSE US
=================================== */

.why-choose-section{

    padding:120px 0;

    position:relative;

}

.section-heading{

    max-width:800px;

    margin:auto;

}

.section-heading h2{

    font-size:60px;

    margin-top:15px;

    margin-bottom:20px;

}

.section-heading h2 span{

    color:var(--gold);

}

.section-heading p{

    color:#bdbdbd;

    line-height:1.9;

}

.choose-card{

    height:100%;

    padding:40px 30px;

    text-align:center;

    border-radius:25px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(212,175,55,.12);

    transition:.45s;

    position:relative;

    overflow:hidden;

}

.choose-card::before{

    content:"";

    position:absolute;

    top:-100%;

    left:-100%;

    width:250px;

    height:250px;

    background:rgba(212,175,55,.08);

    border-radius:50%;

    transition:.6s;

}

.choose-card:hover::before{

    top:-50px;

    left:-50px;

}

.choose-card:hover{

    transform:translateY(-12px);

    border-color:var(--gold);

    box-shadow:
    0 0 40px rgba(212,175,55,.12);

}

.icon-box{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(
    135deg,
    rgba(212,175,55,.18),
    rgba(255,255,255,.03));

    border:1px solid rgba(212,175,55,.25);

}

.icon-box i{

    font-size:34px;

    color:var(--gold);

}

.choose-card h4{

    margin-bottom:15px;

    color:#fff;

}

.choose-card p{

    color:#bdbdbd;

    line-height:1.8;

    margin:0;

}

@media(max-width:991px){

    .section-heading h2{

        font-size:42px;

    }

}

@media(max-width:576px){

    .why-choose-section{

        padding:80px 0;

    }

    .section-heading h2{

        font-size:34px;

    }

}

/* ===================================
   CORE VALUES TIMELINE
=================================== */

.values-section{

    padding:120px 0;

    position:relative;

}

.values-timeline{

    position:relative;

    max-width:1100px;

    margin:80px auto 0;

}

.timeline-line{

    position:absolute;

    left:50%;

    top:0;

    width:3px;

    height:100%;

    background:
    linear-gradient(
    to bottom,
    transparent,
    var(--gold),
    transparent);

    transform:translateX(-50%);

}

.timeline-item{

    position:relative;

    width:50%;

    padding:20px 50px;

    margin-bottom:40px;

}

.timeline-item.left{

    left:0;

}

.timeline-item.right{

    left:50%;

}

.timeline-content{

    background:rgba(255,255,255,.03);

    border:1px solid rgba(212,175,55,.15);

    border-radius:25px;

    padding:35px;

    transition:.4s;

    position:relative;

}

.timeline-content:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

    box-shadow:
    0 0 35px rgba(212,175,55,.12);

}

.timeline-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(
    135deg,
    rgba(212,175,55,.20),
    rgba(255,255,255,.03));

    border:1px solid rgba(212,175,55,.30);

    margin-bottom:20px;

}

.timeline-icon i{

    color:var(--gold);

    font-size:28px;

}

.timeline-content h4{

    color:#fff;

    margin-bottom:12px;

}

.timeline-content p{

    color:#bdbdbd;

    line-height:1.8;

    margin:0;

}

.timeline-item::after{

    content:'';

    position:absolute;

    top:55px;

    width:18px;

    height:18px;

    background:var(--gold);

    border-radius:50%;

    box-shadow:
    0 0 20px rgba(212,175,55,.8);

}

.timeline-item.left::after{

    right:-9px;

}

.timeline-item.right::after{

    left:-9px;

}

/* MOBILE */

@media(max-width:991px){

    .timeline-line{

        left:20px;

    }

    .timeline-item{

        width:100%;

        left:0 !important;

        padding-left:60px;

        padding-right:0;

    }

    .timeline-item::after{

        left:11px !important;

    }

}

@media(max-width:576px){

    .values-section{

        padding:80px 0;

    }

    .timeline-content{

        padding:25px;

    }

}

/* ===================================
   HORSE TOKEN
=================================== */

.token-section{

    padding:120px 0;

    position:relative;

    overflow:hidden;

}

.token-section::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    border-radius:50%;

    background:rgba(212,175,55,.08);

    filter:blur(120px);

    top:-100px;

    right:-150px;

}

.token-content{

    position:relative;
    z-index:2;

}

.token-content h2{

    font-size:90px;

    line-height:1;

    margin:15px 0;

}

.token-content h2 span{

    color:var(--silver);

}

.token-content h3{

    font-size:42px;

    color:white;

    margin-bottom:25px;

}

.token-content h3 span{

    color:var(--gold);

}

.token-content p{

    color:#cfcfcf;

    line-height:2;

    margin-bottom:35px;

}

.token-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.token-feature{

    background:rgba(255,255,255,.03);

    border:1px solid rgba(212,175,55,.15);

    padding:18px;

    border-radius:15px;

    display:flex;

    align-items:center;

    gap:15px;

    transition:.4s;

}

.token-feature:hover{

    border-color:var(--gold);

    transform:translateY(-5px);

}

.token-feature i{

    color:var(--gold);

    font-size:22px;

}

.token-feature span{

    color:white;

    font-weight:500;

}

.token-image{

    text-align:center;

}

.token-image img{

    max-width:100%;

    animation:tokenFloat 5s ease-in-out infinite;

    filter:
    drop-shadow(0 0 40px rgba(212,175,55,.30));

}

@keyframes tokenFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0);
    }

}

@media(max-width:991px){

    .token-content{

        text-align:center;

    }

    .token-content h2{

        font-size:60px;

    }

    .token-content h3{

        font-size:32px;

    }

}

@media(max-width:576px){

    .token-content h2{

        font-size:45px;

    }

    .token-content h3{

        font-size:26px;

    }

    .token-features{

        grid-template-columns:1fr;

    }

}

/* ===================================
   CONTACT US
=================================== */

.contact-section{

    padding:120px 0;

}

.contact-info{

    display:flex;
    flex-direction:column;
    gap:25px;

}

.contact-box{

    display:flex;
    gap:20px;

    align-items:flex-start;

    padding:25px;

    border-radius:20px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(212,175,55,.12);

    transition:.4s;

}

.contact-box:hover{

    border-color:var(--gold);

    transform:translateY(-5px);

}

.contact-box i{

    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    color:var(--gold);

    font-size:22px;

    background:rgba(212,175,55,.08);

}

.contact-box h5{

    color:#fff;
    margin-bottom:8px;

}

.contact-box p{

    color:#bdbdbd;
    margin:0;

}

.contact-form{

    background:rgba(255,255,255,.03);

    border:1px solid rgba(212,175,55,.12);

    padding:40px;

    border-radius:25px;

}

.contact-form .form-control{

    background:#111;

    border:1px solid rgba(212,175,55,.20);

    color:#fff;

    padding:15px 20px;

    border-radius:15px;

}

.contact-form .form-control:focus{

    box-shadow:none;

    border-color:var(--gold);

    background:#111;

    color:#fff;

}

.contact-form textarea{

    resize:none;

}

.contact-form .form-control::placeholder{

    color:#999;

}

@media(max-width:576px){

    .contact-section{

        padding:80px 0;

    }

    .contact-form{

        padding:25px;

    }

}

/* ===================================
   FINAL CTA
=================================== */

.final-cta{

    padding:100px 0;

}

.cta-box{

    text-align:center;

    padding:80px 40px;

    border-radius:30px;

    background:
    linear-gradient(
    135deg,
    rgba(212,175,55,.10),
    rgba(255,255,255,.03));

    border:1px solid rgba(212,175,55,.20);

}

.cta-box h2{

    font-size:65px;

    margin:20px 0;

}

.cta-box p{

    max-width:700px;

    margin:auto;

    color:#cfcfcf;

    line-height:2;

    margin-bottom:35px;

}

/* ===================================
   FOOTER
=================================== */

.footer{

    padding-top:80px;

    background:#070707;

    border-top:1px solid rgba(212,175,55,.10);

}

.footer-logo img{

    width:90px;

    margin-bottom:20px;

}

.footer-logo h4{

    color:var(--gold);

}

.footer-logo p{

    color:#bdbdbd;

}

.footer h5{

    color:var(--gold);

    margin-bottom:25px;

}

.footer ul{

    padding:0;

}

.footer ul li{

    margin-bottom:12px;

    color:#bdbdbd;

}

.footer ul li a{

    color:#bdbdbd;

    transition:.3s;

}

.footer ul li a:hover{

    color:var(--gold);

}

.social-links{

    display:flex;

    gap:15px;

}

.social-links a{

    width:45px;
    height:45px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--gold);

    border:1px solid rgba(212,175,55,.25);

    transition:.4s;

}

.social-links a:hover{

    background:var(--gold);

    color:#000;

    transform:translateY(-5px);

}

.footer hr{

    margin:50px 0 25px;

    border-color:rgba(212,175,55,.15);

}

.copyright{

    text-align:center;

    color:#999;

    padding-bottom:25px;

}

@media(max-width:768px){

    .cta-box h2{

        font-size:40px;

    }

}