*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

:root{
    --bg:#090909;
    --secondary:#111111;
    --gold:#d4af37;
    --light:#f5f5f5;
    --muted:#bdbdbd;
    --glass:rgba(255,255,255,0.08);
}

body{
    background:var(--bg);
    color:var(--light);
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
}

body::before{
    content:'';
    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at top left, rgba(212,175,55,0.18), transparent 25%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.05), transparent 20%);
    z-index:-2;
}

.cursor{
    width:20px;
    height:20px;
    border:2px solid var(--gold);
    border-radius:50%;
    position:fixed;
    transform:translate(-50%,-50%);
    pointer-events:none;
    z-index:9999;
    transition:0.08s linear;
}

.hero{
    min-height:100vh;
    position:relative;
    padding:30px 7%;
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle, rgba(212,175,55,0.18), transparent 70%);
    top:-200px;
    right:-100px;
    animation:floatGlow 8s ease-in-out infinite;
}

@keyframes floatGlow{
    0%,100%{transform:translateY(0px);}
    50%{transform:translateY(40px);}
}

/* NAVBAR */

.navbar{
    width:100%;

    display:flex;
    flex-direction:column;

    align-items:center;
    justify-content:center;

    gap:2rem;

    padding-top:2rem;

    position:relative;

    z-index:10;
}



/* HEADING */

.nav-heading{
    text-align:center;
}

.nav-heading h2{
    font-size:1.8rem;

    letter-spacing:0.45rem;

    font-weight:300;

    color:var(--gold);

    margin-bottom:0.7rem;
}

.nav-heading p{
    color:rgba(255,255,255,0.72);

    letter-spacing:0.15rem;

    text-transform:uppercase;

    font-size:0.8rem;
}



/* LOGO */

.hero-logo{
    width:100%;

    display:flex;
    justify-content:center;
}

.hero-logo img{
    width:20rem;

    max-width:70vw;

    border-radius:2rem;

    display:block;

    transition:0.4s;
}

.hero-logo img:hover{
    transform:scale(1.03);
}



/* NAV LINKS */

.nav-links{
    width:min(55rem,90%);

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:1rem;

    list-style:none;
}

.nav-links li{
    width:100%;
}

.nav-links a{
    width:100%;

    display:flex;

    align-items:center;
    justify-content:center;

    text-decoration:none;

    padding:1rem 1.2rem;

    border-radius:1rem;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    color:white;

    transition:0.4s;
}

.nav-links a:hover{
    background:linear-gradient(
    135deg,
    var(--gold),
    #f0d980
    );

    color:black;

    transform:translateY(-3px);
}



/* RESERVE BUTTON */

.nav-btn{
    padding:1rem 2.5rem;
}



/* REMOVE OLD MOBILE MENU */

.menu-btn{
    display:none;
}
.reserve-link{
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}
.hero-content{
    position:relative;
    z-index:5;
    max-width:780px;
    margin-top:140px;
}

.hero-badge{
    width:max-content;
    padding:10px 22px;
    border-radius:100px;
    background:rgba(212,175,55,0.12);
    border:1px solid rgba(212,175,55,0.4);
    color:var(--gold);
    margin-bottom:28px;
    backdrop-filter:blur(15px);
}

.hero-content h1{
    font-size:82px;
    line-height:1;
    font-family:'Cormorant Garamond',serif;
    margin-bottom:28px;
    font-weight:700;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    color:var(--muted);
    max-width:700px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:45px;
}
.breed-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}
.premium-btn,
.glass-btn{
    border:none;
    cursor:pointer;
    transition:0.4s;
    position:relative;
    overflow:hidden;
    text-decoration:none;
}

.premium-btn{
    background:#111;
    color:white;
    padding:18px 38px;
    border-radius:16px;
    font-weight:700;
    border:1px solid rgba(255,255,255,0.12);
    backdrop-filter:blur(20px);
    text-decoration:none;
}

.premium-btn:hover{
    transform:translateY(-5px) scale(1.03);
    background:linear-gradient(135deg,var(--gold),#f0d980);
    color:black;
    border-color:transparent;
}

.glass-btn{
    background:#111;
    color:white;
    padding:18px 38px;
    border-radius:16px;
    font-weight:700;
    border:1px solid rgba(255,255,255,0.12);
    backdrop-filter:blur(20px);
}

.glass-btn:hover{
    transform:translateY(-5px) scale(1.03);
    background:linear-gradient(135deg,var(--gold),#f0d980);
    color:black;
    border-color:transparent;
}



.stats-section{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    padding:0 7%;
    margin-top:60px;
    position:relative;
    z-index:30;
}

.stat-card{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    padding:50px;
    border-radius:30px;
    backdrop-filter:blur(20px);
    text-align:center;
    transition:0.4s;
}

.stat-card:hover{
    transform:translateY(-10px);
    border-color:rgba(212,175,55,0.4);
}

.stat-card h2{
    font-size:60px;
    color:var(--gold);
    margin-bottom:10px;
    font-family:'Cormorant Garamond',serif;
}

.stat-card p{
    color:var(--muted);
}

.about-section{
    padding:140px 7%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.image-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.image-box{
   
    min-height:260px;
    border-radius:30px;
    border:1px solid rgba(255,255,255,0.08);
    position:relative;
    overflow:hidden;
    overflow:hidden;
    border-radius:30px;
    position:relative;
}
 

.image-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:0.5s ease;
}
.image-box::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(transparent, rgba(212,175,55,0.12));
}

.large-img{
    grid-row:span 2;
    min-height:540px;
}

.section-tag{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:13px;
}

.about-right h2,
.section-header h2,
.health-content h2,
.cta-box h2{
    font-size:68px;
    line-height:1;
    margin:20px 0 25px;
    font-family:'Cormorant Garamond',serif;
}

.about-right p,
.cta-box p{
    color:var(--muted);
    line-height:1.9;
    margin-bottom:20px;
}

.feature-list{
    margin:35px 0;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:15px;
    font-size:17px;
}

.feature-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:var(--gold);
    box-shadow:0 0 15px var(--gold);
     flex-shrink:0;
}

.breeds-section{
    padding:0 7% 140px;
}

.section-header{
    text-align:center;
    margin-bottom:70px;
}

.breed-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.breed-card{
    background:rgba(255,255,255,0.05);
    border-radius:35px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.08);
    transition:0.5s;
    position:relative;
}

.breed-card:hover{
    transform:translateY(-12px);
    border-color:rgba(212,175,55,0.35);
}

.featured-card{
    transform:scale(1.05);
}

.breed-image{
    height:320px;
    
    position:relative;
}
.breed-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:0.5s;
}

.breed-card:hover .breed-image img{
    filter:brightness(1.1);
}

.breed-image::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(transparent, rgba(0,0,0,0.65));
}

.breed-content{
    padding:35px;
}

.breed-content h3{
    font-size:40px;
    font-family:'Cormorant Garamond',serif;
    margin-bottom:15px;
}

.breed-content p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:25px;
}

.small-btn{
    padding:14px 28px;
}

.health-section{
    padding:140px 7%;
    position:relative;
}

.health-glow{
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle, rgba(212,175,55,0.15), transparent 70%);
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
}

.health-content{
    position:relative;
    z-index:2;
    text-align:center;
}

.health-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:70px;
}

.health-card{
    padding:40px;
    border-radius:30px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
    transition:0.4s;
}

.health-card:hover{
    transform:translateY(-8px);
    border-color:rgba(212,175,55,0.4);
}

.health-icon{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background:rgba(212,175,55,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
    font-size:30px;
    margin-bottom:25px;
}

.cta-section{
    padding:0 7% 140px;
}

.cta-box{
    background:linear-gradient(135deg, rgba(212,175,55,0.12), rgba(255,255,255,0.04));
    border-radius:40px;
    padding:90px;
    text-align:center;
    border:1px solid rgba(212,175,55,0.2);
    position:relative;
    overflow:hidden;
}

.cta-box::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(212,175,55,0.08);
    top:-100px;
    right:-100px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:40px;
}

.footer{
    padding:80px 7%;
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.08);
}

.footer-logo{
    width:140px;
    height:60px;
    margin:auto;
    border:1px dashed rgba(255,255,255,0.4);
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:30px;
}

.footer p{
    color:var(--muted);
    max-width:600px;
    margin:0 auto 30px;
    line-height:1.8;
}

.footer-links{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-bottom:25px;
}

.footer-links a{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:white;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
    font-size:20px;
    transition:0.4s ease;
}

.footer-links a:hover{
    background:linear-gradient(135deg,var(--gold),#f0d980);
    color:black;
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(212,175,55,0.25);
}

.copyright{
    color:#777;
    font-size:14px;
}

.menu-btn{
    display:none;
}

.reviews-section{
    padding:0 7% 140px;
    overflow:hidden;
}

.review-slider{
    width:100%;
    overflow:hidden;
    position:relative;
    margin-top:60px;
}

.review-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation:scrollReviews 35s linear infinite;
}

.review-card{
    width:420px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:35px;
    overflow:hidden;
    backdrop-filter:blur(20px);
    transition:0.4s;
    flex-shrink:0;
}

.review-card:hover{
    border-color:rgba(212,175,55,0.35);
    box-shadow:0 0 35px rgba(212,175,55,0.12);
}

.review-image{
    height:300px;
    overflow:hidden;
}

.review-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.review-content{
    padding:35px;
}

.stars{
    color:var(--gold);
    font-size:20px;
    margin-bottom:20px;
}

.review-content p{
    color:var(--muted);
    line-height:1.9;
    margin-bottom:22px;
}

.review-content h4{
    font-weight:600;
    color:white;
}

@keyframes scrollReviews{
    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }
}
