/* =========================
ARCHIVO: styles.css
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:Arial, sans-serif;
    background:#f5f1ea;
    color:#222;
}

/* NAVBAR */
.navbar{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    background:#111;
    padding:15px 50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;
}

.logo{
    color:#d4af37;
    font-size:28px;
    font-weight:bold;
}

.nav-links{
    display:flex;
    list-style:none;
}

.nav-links li{
    margin-left:20px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.nav-links a:hover{
    color:#d4af37;
}

/* HERO */
.hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?q=80&w=1400&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.hero-content h1{
    font-size:70px;
}

.hero-content p{
    margin:20px 0;
    font-size:22px;
}

.btn{
    background:#d4af37;
    color:#111;
    padding:15px 30px;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
}

/* SECCIONES */
section{
    padding:100px 10%;
}

h2{
    text-align:center;
    margin-bottom:40px;
    color:#111;
    font-size:40px;
}

/* ABOUT */
.about p{
    text-align:center;
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

/* CARDS */
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card-content{
    padding:20px;
}

.card-content h4{
    margin-bottom:10px;
}

.card-content span{
    color:#d4af37;
    font-weight:bold;
}

/* GALERÍA */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:15px;
}

.gallery-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:10px;
}

/* CONTACTO */
.contact form{
    max-width:600px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact input{
    padding:15px;
    border:none;
    border-radius:5px;
}

.contact button{
    padding:15px;
    border:none;
    background:#d4af37;
    font-size:18px;
    cursor:pointer;
    border-radius:5px;
}

.contact-buttons{
    margin-top:30px;
    text-align:center;
}

.contact-buttons a{
    display:inline-block;
    margin:10px;
    padding:15px 25px;
    text-decoration:none;
    border-radius:5px;
    color:white;
}

.whatsapp-btn{
    background:#25D366;
}

.call-btn{
    background:#111;
}

/* BOTÓN FLOTANTE */
.floating-whatsapp{
    position:fixed;
    width:60px;
    height:60px;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    text-decoration:none;
}

/* FOOTER */
footer{
    background:#111;
    color:white;
    text-align:center;
    padding:30px;
}

.socials a{
    color:#d4af37;
    margin:0 10px;
    font-size:25px;
}

/* RESPONSIVE */
@media(max-width:768px){

    .navbar{
        flex-direction:column;
    }

    .hero-content h1{
        font-size:45px;
    }

    .nav-links{
        margin-top:15px;
    }

}