@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 */

.contact-hero{
text-align:center;
padding:100px 20px;
}

.contact-hero h1{
font-size:72px;
color:#1597a5;
margin-bottom:20px;
}

.contact-hero p{
font-size:24px;
}

/* CARDS */

.contact-cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;

padding:0 8% 100px;
}

.contact-card{
background:white;
padding:40px;
border-radius:35px;
text-align:center;

box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.contact-card h2{
color:#1597a5;
font-size:36px;
}

/* MAP */

.map-section{
padding:100px 8%;
background:#fff4dc;
text-align:center;
}

.map-section h2{
font-size:58px;
color:#1597a5;
margin-bottom:50px;
}

.map-container{
border-radius:35px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.map-container iframe{
width:100%;
height:450px;
border:none;
}

/* FORM */

.message-section{
padding:100px 8%;
text-align:center;
}

.message-section h2{
font-size:58px;
color:#1597a5;
margin-bottom:50px;
}

.message-form{
max-width:700px;
margin:auto;

display:flex;
flex-direction:column;
gap:20px;
}

.message-form input,
.message-form textarea{
padding:20px;
border-radius:18px;
border:none;
background:white;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
font-size:16px;
}

.message-form textarea{
min-height:180px;
}

.message-form button{
background:#1597a5;
color:white;
border:none;
padding:20px;
border-radius:50px;
font-size:18px;
cursor:pointer;
}

/* FOOTER */

.footer{
background:#1597a5;
color:white;
text-align:center;
padding:70px 20px;
margin-top:80px;
}

/* MOBILE */

@media(max-width:900px){

.contact-hero h1,
.map-section h2,
.message-section h2{
font-size:48px;
}

.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;
}

}


}

