@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600&display=swap');

body{
margin:0;
padding:0;
font-family:'Fredoka', sans-serif;
background:#fffaf5;
color:#333;
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 60px;
background:#fff4dc;
position:sticky;
top:0;
z-index:1000;
}

.logo{
font-size:36px;
color:#1597a5;
font-weight:600;
}

.nav-links{
display:flex;
gap:25px;
}

.nav-links a{
text-decoration:none;
color:#1597a5;
font-size:18px;
}

/* HERO */

.hero{
display:flex;
justify-content:space-between;
align-items:center;
padding:100px 8%;
gap:60px;
flex-wrap:wrap;
}

.hero-text{
flex:1;
}

.hero-text h1{
font-size:72px;
color:#1597a5;
margin-bottom:20px;
}

.hero-text p{
font-size:22px;
line-height:1.7;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.hero-buttons a{
text-decoration:none;
background:#ff8f6b;
color:white;
padding:18px 34px;
border-radius:50px;
}

.hero-image{
flex:1;
display:flex;
justify-content:center;
}

.hero-image img{
width:100%;
max-width:500px;

border-radius:40% 60% 55% 45%;

box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

/* SERVICES */

.services-section{
padding:100px 8%;
text-align:center;
}

.services-section h2{
font-size:58px;
color:#1597a5;
margin-bottom:60px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.service-card{
background:white;
border-radius:35px;
padding:25px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.service-card img{
width:100%;
height:260px;
object-fit:cover;
border-radius:30px;
}

.service-card h3{
color:#1597a5;
font-size:32px;
}

.service-card p{
line-height:1.6;
}

/* GALLERY */

.gallery-section{
padding:100px 8%;
background:#fff4dc;
text-align:center;
}

.gallery-section h2{
font-size:58px;
color:#1597a5;
margin-bottom:60px;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.gallery-grid img{
width:100%;
height:320px;
object-fit:cover;
border-radius:35px;
}

/* ABOUT */

.about-section{
display:flex;
justify-content:space-between;
align-items:center;
gap:60px;
padding:100px 8%;
flex-wrap:wrap;
}

.about-text{
flex:1;
}

.about-text h2{
font-size:58px;
color:#1597a5;
}

.about-text p{
font-size:22px;
line-height:1.8;
}

.about-image{
flex:1;
display:flex;
justify-content:center;
}

.about-image img{
width:100%;
max-width:450px;

border-radius:35% 65% 55% 45%;
}

/* FOOTER */

.footer{
background:#1597a5;
color:white;
text-align:center;
padding:70px 20px;
}

.footer h2{
font-size:42px;
}

/* MOBILE */

@media(max-width:900px){

.hero{
flex-direction:column;
text-align:center;
}

.about-section{
flex-direction:column;
}

.hero-text h1{
font-size:50px;
}

.services-section h2,
.gallery-section h2,
.about-text h2{
font-size:42px;
}

.navbar{
flex-direction:column;
gap:20px;
.navbar{
flex-direction:column;

gap:15px;

padding:20px;
}

.nav-links{
display:flex;

flex-wrap:wrap;

justify-content:center;

gap:15px;
}

.nav-links a{
font-size:16px;
}

/* HERO IMAGES */

.hero-image img,
.about-image img,
.bring-image img,
.intro-image img{
max-width:280px;
}

/* GALLERY IMAGES */

.gallery-grid img{
height:220px;
}

/* SERVICE IMAGES */

.service-card img,
.option-card img{
height:200px;
}

/* HERO TEXT */

.hero-text h1,
.contact-hero h1{
font-size:42px;
}

.hero-text p{
font-size:18px;
}

}

}
.social-links{
display:flex;
justify-content:center;
gap:20px;
margin-top:25px;
}

.social-links a{
text-decoration:none;
background:white;
color:#1597a5;
padding:14px 28px;
border-radius:40px;
font-weight:600;
transition:0.3s;
}

.social-links a:hover{
background:#ffd166;
}

/* FEATURED GALLERY */

.featured-gallery{
display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;

margin-bottom:40px;
}

.featured-gallery img{
width:100%;

height:320px;

object-fit:cover;

border-radius:35px;
}

/* BUTTON */

.gallery-btn{
background:#1597a5;

color:white;

border:none;

padding:18px 36px;

border-radius:50px;

font-size:18px;

cursor:pointer;
}

/* POPUP */

.gallery-popup{
position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.9);

display:none;

justify-content:center;

align-items:center;

padding:40px;

z-index:5000;

overflow-y:auto;
}

/* CLOSE BUTTON */

.close-gallery{
position:fixed;

top:20px;

right:25px;

width:50px;

height:50px;

background:white;

color:#1597a5;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:34px;

font-weight:bold;

cursor:pointer;

z-index:99999;
}

/* POPUP GRID */

.popup-gallery-grid{
width:100%;

max-width:1200px;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;
}

.popup-gallery-grid img{
width:100%;

height:320px;

object-fit:cover;

border-radius:30px;
}

