/* RESET */
* {
    box-sizing: border-box;
}

body {
    margin:0;
    font-family: 'Inter', sans-serif;
    background:#0b0b0b;
    color:#fff;
}

/* CONTAINER */
.container {
    max-width:1200px;
    margin:auto;
    padding:80px 20px 20px;
}

/* NAVBAR */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    z-index: 1000;

    overflow: hidden;
}

/* LEFT */
.nav-left {
    flex-shrink: 0;
}

/* LOGO */
.logo {
    font-size: 20px;
    color: #d4af37;
    letter-spacing: 1px;
}

/* RIGHT SIDE */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

/* LINKS */
.nav-right a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    position: relative;
    transition: 0.3s;
    white-space: nowrap;
}

/* HOVER UNDERLINE */
.nav-right a::after {
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0%;
    height:2px;
    background:#d4af37;
    transition:0.3s;
}

.nav-right a:hover::after,
.nav-right .active::after {
    width:100%;
}

/* CTA BUTTON */
.btn {
    padding: 8px 16px;
    border: 1px solid #d4af37;
    border-radius: 20px;
    color: #d4af37 !important;
}

.btn:hover {
    background:#d4af37;
    color:#000 !important;
}

/* HERO */
.hero {
    height: 85vh;
    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
        url('/assets/images/hero.jpg');
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-content p {
    color: #aaa;
    margin-bottom: 25px;
}

/* SEARCH BOX */
.search-box {
    display: flex;
    gap: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.search-box input,
.search-box select {
    padding: 10px;
    border: none;
    outline: none;
}

.search-box button {
    background: #d4af37;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

/* CARD */
.card {
    background:#111;
    border-radius:16px;
    overflow:hidden;
    transition:0.3s;
}

.card:hover {
    transform:translateY(-6px) scale(1.01);
}

.card img {
    width:100%;
    height:200px;
    object-fit:cover;
}

.card-body {
    padding:15px;
}

.price {
    color:#d4af37;
    font-weight:bold;
}

/* GRID */
.grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
    gap:20px;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;

    display: flex;
    align-items: center;
    gap: 10px;

    background: #25D366;
    color: #fff;
    padding: 12px 16px;
    border-radius: 50px;

    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);

    transition: 0.3s;
}

/* ICON */
.wa-icon {
    font-size: 18px;
}

/* TEXT */
.wa-text strong {
    display: block;
    font-size: 14px;
}

.wa-text small {
    font-size: 11px;
    opacity: 0.8;
}

/* HOVER */
.whatsapp:hover {
    transform: translateY(-3px);
}

/* MOBILE (compact mode) */
@media(max-width:768px){
    .wa-text {
        display: none;
    }

    .whatsapp {
        padding: 15px;
        border-radius: 50%;
    }
}


/* WHATSAPP end */

/* MOBILE */
@media(max-width:768px){

    .nav {
        padding: 15px 20px;
    }

    .nav-right {
        gap: 10px;
    }

    .nav-right a {
        font-size: 12px;
    }

    .btn {
        padding: 6px 12px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .search-box {
        flex-direction: column;
    }
}