/* ===========================
   AXIS RESIDENCE
   Luxury Landing Page
=========================== */

:root{
    --primary:#b8835a;
    --primary-dark:#8b5d3d;
    --dark:#090909;
    --dark2:#121212;
    --light:#ffffff;
    --text:#d9d9d9;
    --glass:rgba(18,18,18,.65);
}

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#000;
    color:#fff;
    overflow-x:hidden;

}

/* Hero Background */

body::before{

    content:"";
    position:fixed;
    inset:0;

    background:
    linear-gradient(rgba(0,0,0,.60),rgba(0,0,0,.75)),
    url("../images/hero.jpg") center center/cover no-repeat;

    z-index:-3;

}

.overlay{

    position:fixed;
    inset:0;

    background:linear-gradient(
        to right,
        rgba(0,0,0,.88) 0%,
        rgba(0,0,0,.55) 45%,
        rgba(0,0,0,.25) 100%
    );

    z-index:-2;

}

/* Layout */

.container{

    width:min(1180px,90%);
    margin:auto;

}

/* Header */

header{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    backdrop-filter:blur(12px);

    background:rgba(0,0,0,.45);

    border-bottom:1px solid rgba(255,255,255,.06);

    z-index:999;

}

header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 0;

}

.logo img{

    width:210px;

}

nav{

    display:flex;
    gap:35px;

}

nav a{

    color:#fff;
    text-decoration:none;
    letter-spacing:1px;
    transition:.3s;

}

nav a:hover{

    color:var(--primary);

}

/* Hero */

.hero{

    min-height:100vh;

    display:flex;
    align-items:center;

}

.hero-content{

    width:620px;

    animation:fadeUp 1s ease;

}

.subtitle{

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:3px;

    margin-bottom:20px;

}

.hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:78px;

    line-height:.95;

    font-weight:600;

}

.hero h2{

    margin-top:15px;

    font-size:28px;

    font-weight:300;

    color:#ddd;

}

.size{

    display:inline-flex;

    gap:10px;

    align-items:center;

    margin:35px 0;

    padding:12px 22px;

    border:1px solid rgba(184,131,90,.4);

    border-radius:40px;

    color:var(--primary);

}

.description{

    color:#ddd;

    font-size:18px;

    line-height:1.9;

    margin-bottom:45px;

    max-width:600px;

}

/* Buttons */

.buttons{

    display:flex;
    gap:20px;
    flex-wrap:wrap;

}

.btn{

    text-decoration:none;

    padding:16px 34px;

    border-radius:45px;

    transition:.35s;

    font-weight:500;

}

.primary{

    background:linear-gradient(135deg,var(--primary),var(--primary-dark));

    color:white;

}

.primary:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(184,131,90,.35);

}

.secondary{

    border:1px solid var(--primary);

    color:white;

}

.secondary:hover{

    background:var(--primary);

}

/* Sections */

section{

    padding:110px 0;

}

/* Glass Card */

.glass-card{

    background:var(--glass);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:60px;

}

.glass-card h2{

    font-family:'Cormorant Garamond',serif;

    font-size:48px;

    margin-bottom:25px;

}

.glass-card p{

    color:#ddd;

    line-height:2;

    font-size:17px;

}

/* Features */

.features h2,
.contact h2{

    font-family:'Cormorant Garamond',serif;

    font-size:52px;

    text-align:center;

    margin-bottom:60px;

}

.grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.card{

    background:rgba(17,17,17,.75);

    backdrop-filter:blur(10px);

    border:1px solid rgba(184,131,90,.25);

    border-radius:20px;

    padding:45px 35px;

    transition:.35s;

    text-align:center;

}

.card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

}

.card i{

    font-size:45px;

    color:var(--primary);

    margin-bottom:25px;

}

.card h3{

    margin-bottom:15px;

}

.card p{

    color:#bbb;

}

/* Contact */

.contact-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.contact-card{

    text-decoration:none;

    color:white;

    background:rgba(17,17,17,.80);

    backdrop-filter:blur(12px);

    padding:45px;

    border-radius:20px;

    border:1px solid rgba(184,131,90,.25);

    transition:.35s;

    text-align:center;

}

.contact-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

}

.contact-card i{

    font-size:42px;

    color:var(--primary);

    margin-bottom:20px;

}

.contact-card h3{

    margin-bottom:12px;

}

.contact-card p{

    color:#ccc;

    line-height:1.7;

}

/* Footer */

footer{

    padding:60px 0;

    text-align:center;

    background:#050505;

}

.footer-logo{

    width:170px;

    margin-bottom:25px;

}

.footer-links{

    display:flex;

    justify-content:center;

    gap:35px;

    flex-wrap:wrap;

    margin:35px 0;

}

.footer-links a{

    color:#ddd;

    text-decoration:none;

}

.footer-links a:hover{

    color:var(--primary);

}

.copyright{

    color:#888;

    margin-top:25px;

}

/* WhatsApp */

.floating-whatsapp{

    position:fixed;

    bottom:30px;

    right:30px;

    width:68px;

    height:68px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    text-decoration:none;

    box-shadow:0 15px 35px rgba(0,0,0,.35);

    z-index:999;

}

/* Animation */

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(50px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/* Responsive */

@media(max-width:900px){

.hero h1{

    font-size:54px;

}

.hero h2{

    font-size:22px;

}

.logo img{

    width:170px;

}

nav{

    display:none;

}

.glass-card{

    padding:35px;

}

.glass-card h2{

    font-size:36px;

}

.features h2,
.contact h2{

    font-size:40px;

}

}

@media(max-width:600px){

.hero{

    text-align:center;

}

.hero-content{

    width:100%;

}

.buttons{

    justify-content:center;

}

.size{

    margin-left:auto;
    margin-right:auto;

}

.description{

    font-size:16px;

}

.hero h1{

    font-size:46px;

}

}