*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#222;
    background:#fff;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* Navigation */

.navbar{

    position:fixed;
    top:0;
    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 8%;

    z-index:1000;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(10px);

    box-shadow:0 2px 10px rgba(0,0,0,.05);

}

.logo{

    font-family:'Playfair Display',serif;
    font-size:1.6rem;
    font-weight:700;

    letter-spacing:2px;

}

.nav-links{

    display:flex;
    gap:35px;

}

.nav-links a{

    color:#222;

    transition:.3s;

    font-weight:500;

}

.nav-links a:hover{

    color:#888;

}

.menu-btn{

    display:none;

    font-size:2rem;

    cursor:pointer;

}

/* Hero */

.hero{

    height:100vh;

    background:url("../images/hero.jpg") center center/cover no-repeat;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

}

.hero-content{

    position:relative;

    color:white;

    padding:20px;

    max-width:800px;

}

.hero h1{

    font-family:'Playfair Display',serif;

    font-size:4rem;

    margin-bottom:20px;

}

.hero p{

    font-size:1.2rem;

    margin-bottom:35px;

}

.btn{

    display:inline-block;

    padding:15px 40px;

    background:white;

    color:black;

    border-radius:40px;

    transition:.3s;

    font-weight:600;

}

.btn:hover{

    background:#222;

    color:white;

}

/* Footer */

footer{

    text-align:center;

    padding:30px;

    background:#111;

    color:white;

}

/* Mobile */

@media(max-width:768px){

.nav-links{

display:none;

position:absolute;

top:80px;

left:0;

width:100%;

background:white;

flex-direction:column;

padding:20px;

text-align:center;

}

.nav-links.active{

display:flex;

}

.menu-btn{

display:block;

}

.hero h1{

font-size:2.6rem;

}

.hero p{

font-size:1rem;

}

}
/* ==========================
   SECTION SPACING
========================== */

section{

    padding:100px 10%;

}

/* ==========================
   SECTION TITLES
========================== */

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:#777;

    font-size:.9rem;

    letter-spacing:2px;

}

.section-title h2{

    font-family:'Playfair Display',serif;

    font-size:2.5rem;

    margin-top:10px;

}

/* ==========================
   ABOUT
========================== */

.about{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.about img{

    width:100%;

    border-radius:15px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.about-content span{

    color:#888;

    letter-spacing:2px;

    font-size:.9rem;

}

.about-content h2{

    margin:15px 0 25px;

    font-size:2.6rem;

    font-family:'Playfair Display',serif;

}

.about-content p{

    line-height:1.9;

    color:#555;

    margin-bottom:20px;

}

/* ==========================
   SERVICES
========================== */

.services{

    background:#f8f8f8;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.service-card{

    background:white;

    padding:40px;

    border-radius:15px;

    text-align:center;

    transition:.35s;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.service-card h3{

    margin-bottom:20px;

    font-size:1.4rem;

}

.service-card p{

    color:#666;

    line-height:1.8;

}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:900px){

.about{

grid-template-columns:1fr;

}

.about-content{

text-align:center;

}

.about h2{

font-size:2.1rem;

}

}
/* ==========================
   PORTFOLIO
========================== */

.portfolio{

    background:#fff;

}

.portfolio p{

    color:#666;

}

.portfolio-filter{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin:40px 0;

}

.filter-btn{

    border:none;

    background:#eee;

    padding:12px 25px;

    border-radius:30px;

    cursor:pointer;

    transition:.3s;

    font-weight:500;

}

.filter-btn.active,
.filter-btn:hover{

    background:#111;

    color:white;

}

.gallery{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:20px;

}

.gallery-item{

    overflow:hidden;

    border-radius:15px;

    cursor:pointer;

}

.gallery-item img{

    width:100%;

    height:300px;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

/* ==========================
   LIGHTBOX
========================== */

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.9);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:9999;

}

.lightbox img{

    max-width:90%;

    max-height:85vh;

    border-radius:10px;

}

.close-lightbox{

    position:absolute;

    top:25px;

    right:40px;

    color:white;

    font-size:45px;

    cursor:pointer;

}
/* ==========================
   TESTIMONIALS
========================== */

.testimonials{

    background:#f8f8f8;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.testimonial-card{

    background:white;

    padding:40px;

    border-radius:15px;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.testimonial-card:hover{

    transform:translateY(-8px);

    transition:.3s;

}

.stars{

    color:#d4af37;

    font-size:1.2rem;

    margin-bottom:20px;

}

.testimonial-card p{

    color:#555;

    line-height:1.8;

    margin-bottom:20px;

}

.testimonial-card h4{

    font-weight:600;

}


/* ==========================
   CONTACT
========================== */

.contact{

    background:white;

}

.contact-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    margin-top:50px;

}

.contact-info h3{

    font-family:'Playfair Display',serif;

    font-size:2rem;

    margin-bottom:20px;

}

.contact-info p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.info-item{

    margin-bottom:20px;

    color:#444;

}

.social-links{

    display:flex;

    gap:20px;

    margin-top:25px;

}

.social-links a{

    color:#111;

    font-weight:600;

}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,
.contact-form textarea{

    padding:16px;

    border:1px solid #ddd;

    border-radius:8px;

    font-family:inherit;

    font-size:1rem;

}

.contact-form textarea{

    resize:vertical;

}

.contact-form button{

    padding:16px;

    border:none;

    background:#111;

    color:white;

    border-radius:8px;

    cursor:pointer;

    transition:.3s;

    font-size:1rem;

}

.contact-form button:hover{

    background:#444;

}

/* ==========================
   WHATSAPP
========================== */

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.3s;

    z-index:999;

}

.whatsapp:hover{

    transform:scale(1.1);

}

/* ==========================
   FOOTER
========================== */

footer{

    background:#111;

    color:white;

    text-align:center;

    padding:50px 20px;

}

footer h3{

    font-family:'Playfair Display',serif;

    margin-bottom:15px;

}

footer p{

    color:#bbb;

    margin-top:10px;

}

/* ==========================
   MOBILE
========================== */

@media(max-width:900px){

.contact-container{

grid-template-columns:1fr;

}

.social-links{

justify-content:center;

}

.contact-info{

text-align:center;

}

}
#successMessage{

margin-top:20px;

font-weight:600;

text-align:center;

}
.designer-credit{
    margin-top:20px;
    font-size:0.9rem;
    color:#999;
}

.designer-credit a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.designer-credit a:hover{
    color:#d4af37;
}
.logo img{
    height:60px;
    width:auto;
    display:block;
}
.footer-logo{
    width:150px;
    margin-bottom:20px;
}
.social-links{
    display:flex;
    gap:18px;
    margin-top:30px;
}

.social-links a{
    width:48px;
    height:48px;
    background:#111;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    font-size:20px;
    text-decoration:none;
    transition:0.3s;
}

.social-links a:hover{
    background:#d4af37;
    transform:translateY(-4px);
}