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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#111;
    color:white;
    overflow-x:hidden;
}

/* ================= NAVBAR ================= */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
    z-index:1000;
    background:rgba(0,0,0,0.6);
    backdrop-filter:blur(10px);
}

.logo{
    font-size:32px;
    font-weight:700;
    color:#fff;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:30px;
    font-size:18px;
    font-weight:500;
    transition:0.3s;
}

nav a:hover{
    color:#d4a373;
}

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

.hero{
    height:100vh;

    background-image:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("./images/home.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    padding-top:100px;
}

.hero-content{
    max-width:900px;
    padding:20px;
}

.hero-content h1{
    font-size:85px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-content p{
    font-size:24px;
    margin-bottom:40px;
    color:#f1f1f1;
}

/* ================= BUTTONS ================= */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.hero-buttons button{
    padding:16px 35px;
    border:none;
    border-radius:50px;
    cursor:pointer;
    font-size:17px;
    font-weight:600;
    transition:0.3s;
}

.hero-buttons button:hover{
    transform:translateY(-4px);
}

.hero-buttons button:first-child{
    background:#d4a373;
    color:white;
}

.sms-btn{
    background:white;
    color:#111;
}

/* ================= SERVICES ================= */

.services{
    padding:100px 8%;
    background:#1a1a1a;
}

.services h2{
    text-align:center;
    margin-bottom:60px;
    font-size:48px;
}

.service-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.card{
    background:#222;
    border-radius:20px;
    overflow:hidden;
    transition:0.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.card h3{
    padding:20px 20px 10px;
    font-size:26px;
}

.card p{
    padding:0 20px 25px;
    color:#ccc;
    line-height:1.6;
}

/* ================= PROJECTS ================= */

.projects{
    padding:100px 8%;
    background:#111;
}

.projects h2{
    text-align:center;
    margin-bottom:60px;
    font-size:48px;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.project-card{
    height:320px;
    border-radius:25px;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

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

    text-align:center;

    padding:20px;

    font-size:30px;
    font-weight:700;

    transition:0.4s;
}

.project-card:hover{
    transform:scale(1.03);
}

/* INDIVIDUAL PROJECT IMAGES */

.villa{
    background-image:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url("./images/home.jpg");
}

.workspace{
    background-image:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url("./images/office.jpg");
}

.hotel{
    background-image:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url("./images/hotel.jpg");
}

.project-card:hover{
    transform:scale(1.03);
}

/* ================= CONTACT ================= */

.contact{
    padding:100px 8%;
    text-align:center;
    background:#1a1a1a;
}

.contact h2{
    font-size:48px;
    margin-bottom:20px;
}

.contact p{
    color:#ccc;
    margin-bottom:35px;
    font-size:20px;
}

.contact-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.contact-buttons button{
    padding:16px 35px;
    border:none;
    border-radius:50px;
    cursor:pointer;
    font-size:17px;
    font-weight:600;
    transition:0.3s;
}

.contact-buttons button:hover{
    transform:translateY(-4px);
}

.contact-buttons button:first-child{
    background:#25D366;
    color:white;
}

.contact-buttons .sms-btn{
    background:white;
    color:#111;
}

/* ================= FOOTER ================= */

footer{
    background:#000;
    padding:25px;
    text-align:center;
    color:#aaa;
    font-size:15px;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    header{
        padding:20px;
    }

    nav{
        display:none;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-content p{
        font-size:18px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .hero-buttons button{
        width:260px;
    }

    .services h2,
    .projects h2,
    .contact h2{
        font-size:36px;
    }

    .project-card{
        height:260px;
        font-size:24px;
    }
}