
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#ffffff;
    color:#222;
}

/* HEADER */
header{
    background:linear-gradient(135deg,#000000,#1a1a1a);
    color:#ffffff;
    padding:35px 20px;
    text-align:center;
    position:relative;
}

header h1{
    font-size:38px;
    font-weight:700;
    letter-spacing:1px;
}

header p{
    margin-top:8px;
    color:#d4af37;
}

.lang-btn{
    position:absolute;
    top:20px;
    right:20px;
    background:#d4af37;
    color:#000;
    border:none;
    padding:8px 16px;
    border-radius:30px;
    cursor:pointer;
    font-weight:600;
    transition:0.3s;
}

.lang-btn:hover{
    background:#b8962e;
    transform:scale(1.05);
}

/* NAVBAR */
nav{
    background:#ffffff;
    display:flex;
    justify-content:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    position:sticky;
    top:0;
    z-index:100;
}

nav a{
    color:#000;
    padding:16px 22px;
    text-decoration:none;
    font-weight:500;
    position:relative;
}

nav a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:3px;
    background:#d4af37;
    transition:0.3s;
}

nav a:hover::after{
    width:100%;
}

/* HERO */
.hero{
    height:450px;
    background:url('https://images.unsplash.com/photo-1527529482837-4698179dc6ce') center/cover fixed;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero div{
    background:rgba(0,0,0,0.65);
    backdrop-filter:blur(10px);
    padding:40px;
    border-radius:20px;
    text-align:center;
    color:white;
    animation:fadeUp 1s ease;
    border:1px solid rgba(212,175,55,0.4);
}

.hero h2{
    font-size:44px;
    font-weight:600;
}

.hero button{
    margin-top:25px;
    padding:14px 32px;
    border:none;
    border-radius:40px;
    background:linear-gradient(135deg,#d4af37,#f5e28b);
    color:#000;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    box-shadow:0 15px 35px rgba(0,0,0,0.4);
    transition:0.3s;
}

.hero button:hover{
    transform:translateY(-4px);
}

/* SECTIONS */
section{
    padding:80px 20px;
    max-width:1150px;
    margin:auto;
}

.section-title{
    text-align:center;
    font-size:34px;
    font-weight:600;
    margin-bottom:45px;
    color:#000;
    position:relative;
}

.section-title::after{
    content:'';
    width:90px;
    height:4px;
    background:#d4af37;
    display:block;
    margin:12px auto;
    border-radius:2px;
}

/* ABOUT */
#about p{
    max-width:850px;
    margin:auto;
    text-align:center;
    font-size:17px;
    line-height:1.9;
    color:#444;
}

/* SERVICES */
.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:35px;
}

.service{
    background:#000;
    color:#fff;
    padding:38px 25px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 20px 40px rgba(0,0,0,0.25);
    transition:0.35s;
    position:relative;
    overflow:hidden;
}

.service::before{
    content:'';
    position:absolute;
    inset:0;
    /* background:linear-gradient(135deg,#d4af37,#f5e28b); */
    opacity:0;
    transition:0.35s;
    z-index:0;
}

.service:hover::before{
    opacity:1;
}

.service:hover{
    color:#fff;
    transform:translateY(-10px);
    box-shadow: gold;
    border: 5px solid gold;
}

.service *{
    position:relative;
    z-index:1;
}

/* GALLERY */
.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:22px;
}

.gallery img{
    width:100%;
    height:210px;
    object-fit:cover;
    border-radius:18px;
    box-shadow:0 20px 35px rgba(0,0,0,0.3);
    transition:0.4s;
}

.gallery img:hover{
    transform:scale(1.06);
    border: 5px solid gold;

}

/* CONTACT */
.contact-box{
    background:#000;
    padding:45px;
    border-radius:25px;
    max-width:620px;
    margin:auto;
    box-shadow:0 25px 50px rgba(0,0,0,0.35);
    color:white;
}

.contact-box:hover{
border: 5px solid gold;
}

.contact-box input,
.contact-box textarea{
    width:100%;
    padding:15px;
    margin-bottom:18px;
    border-radius:10px;
    border:1px solid #333;
    background:#111;
    color:white;
    font-size:15px;
}

.contact-box input:focus,
.contact-box textarea:focus{
    outline:none;
    border-color:#d4af37;
}

.contact-box button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:40px;
    background:linear-gradient(135deg,#d4af37,#f5e28b);
    color:#000;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.contact-box button:hover{
    transform:translateY(-4px);
}

/* MAP */
.map iframe{
    border-radius:25px;
    margin-top:45px;
    box-shadow:0 20px 40px rgba(0,0,0,0.25);
}

/* FOOTER */
footer{
    background:#000;
    color:#aaa;
    text-align:center;
    padding:35px;
    font-size:14px;
}

/* WHATSAPP */
.whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    background:#25d366;
    color:white;
    padding:18px;
    border-radius:50%;
    font-size:24px;
    box-shadow:0 12px 30px rgba(0,0,0,0.4);
    transition:0.3s;
}

.whatsapp:hover{
    transform:scale(1.15);
}


/* ANIMATION */
@keyframes fadeUp{
    from{opacity:0;transform:translateY(30px)}
    to{opacity:1;transform:translateY(0)}
}

/* MOBILE */
@media(max-width:768px){
    .hero h2{font-size:30px}
    header h1{font-size:28px}
}
