body{
    font-family:'Poppins',sans-serif;
    background:linear-gradient(135deg,#050816,#000);
    color:white;
}

/* NAVBAR */
nav{
    position:fixed;
    width:100%;
    padding:20px 50px;
    display:flex;
    justify-content:space-between;
    backdrop-filter:blur(10px); 
    background:rgba(0,0,0,0.5);
    z-index:1000;
}

nav h1{
    color:gold;
    font-family:'Cinzel';
}

nav a{
    margin-left:20px;
    text-decoration:none;
    color:white;
}
/* HERO */
.hero{
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero h2{
    font-size:60px;
    color:gold;
    text-shadow:0 0 20px gold;
}

.hero h3{
    font-size:30px;
    color:gold;
    text-shadow:0 0 20px gold;
}

.hero p{margin:20px 0;}

.btn{
    padding:14px 30px;
    border:1px solid gold;
    color:gold;
    text-decoration:none;
    margin:10px;
    transition:0.3s;
}

.btn:hover{
    background:gold;
    color:black;
}

/* SECTIONS */
.section{
    padding:90px 40px;
    text-align:center;
}

.section h2{
    color:gold;
    margin-bottom:40px;
}

.section h3{
    color:gold;
    margin-bottom:20px;
}

/* CARDS */
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.card{
    padding:30px;
    border:1px solid rgba(255,215,0,0.3);
    transition:0.3s;
}

.card:hover{
    transform:scale(1.05);
    box-shadow:0 0 20px gold;
}

/* TESTIMONIAL */
.testimonial{
    max-width:700px;
    margin:auto;
    font-style:italic;
}
/* FORM */
form{
    max-width:500px;
    margin:auto;
}

input,textarea{
    width:100%;
    padding:12px;
    margin:10px 0;
    border:none;
    outline:none;
}

button{
    padding:12px 25px;
    background:gold;
    border:none;
    cursor:pointer;
}

/* TABLE */

/* WHATSAPP */
.whatsapp{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:white;
    padding:15px;
    border-radius:50%;
    text-decoration:none;
    font-size:20px;
}
