
/*
Theme Name: VillaKotaBunga Premium
Theme URI: https://villakotabunga.com
Author: OpenAI
Description: Premium Airbnb-style villa booking theme for VillaKotaBunga.com
Version: 1.0
*/

body{
    margin:0;
    font-family:Arial,sans-serif;
    background:#f7faf7;
    color:#1f2937;
}

header{
    background:#ffffff;
    padding:20px 40px;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    position:sticky;
    top:0;
    z-index:99;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.hero{
    height:500px;
    background:linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.4)),
    url('https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?q=80&w=1800&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    color:white;
}

.hero h1{
    font-size:60px;
    margin-bottom:20px;
}

.btn{
    background:#2f855a;
    color:white;
    padding:14px 28px;
    border-radius:14px;
    text-decoration:none;
    display:inline-block;
    font-weight:bold;
}

.villa-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin:60px 0;
}

.card{
    background:white;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.3s;
}

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

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

.card-content{
    padding:20px;
}

footer{
    background:#163020;
    color:white;
    padding:40px;
    text-align:center;
    margin-top:80px;
}
