/* General */

body{
font-family: 'Poppins', sans-serif;
margin:0;
padding:0;
background:#f9f9f9;
color:#333;
}

.container{
width:90%;
max-width:1100px;
margin:auto;
}


/* NAVBAR */

.header{
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 20px;
background:white;
}

.nav-links{
display:flex;
list-style:none;
gap:25px;
}

.menu-toggle{
display:none;
font-size:26px;
background:none;
border:none;
cursor:pointer;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo{
color:#2b7cff;
}

.nav-links{
list-style:none;
display:flex;
gap:20px;
}

.nav-links a{
text-decoration:none;
color:#333;
font-weight:500;
}

.nav-links a:hover{
color:#2b7cff;
}


html, body{
max-width:100%;
overflow-x:hidden;
}

/* Sticky navigation bar */

.header{
position:sticky;
top:0;
z-index:1000;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

/*Contact us*/

.contact-card{
background:white;
padding:30px;
border-radius:8px;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
max-width:600px;
margin:30px auto;
}

.contact-card .field{
margin-bottom:20px;
display:flex;
flex-direction:column;
}

.contact-card label{
font-weight:600;
margin-bottom:5px;
}

.contact-card input,
.contact-card textarea{
padding:12px 15px;
border:1px solid #ccc;
border-radius:6px;
font-size:1rem;
resize:none;
}

.contact-card input:focus,
.contact-card textarea:focus{
outline:none;
border-color:#2b7cff;
}

.contact-card button.btn-primary{
width:100%;
text-align:center;
font-size:1.1rem;
}

/* HERO */

.hero{
height:70vh;
background:linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
url('../images/Sitter1.jpg');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}
.small-hero{
height:460px;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:60px;
}
.contact-section{
padding:60px 20px;
}

.hero-text{
max-width:500px;
margin:auto;
background:rgba(0,0,0,0.4);
padding:20px;
border-radius:10px;
}

.hero-text h1{
margin-bottom:10px;
font-size:36px;
}

.hero-text p{
font-size:18px;
line-height:1.5;
}

.hero-content h1{
font-size:3rem;
margin-bottom:20px;
}

.hero-content p{
font-size:1.2rem;
margin-bottom:25px;
}


.btn-primary{
background:#ff6b6b;
color:white;
padding:12px 25px;
text-decoration:none;
border-radius:6px;
font-weight:600;
}


/* SERVICES */

.services{
padding:60px 0;
text-align:center;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
gap:25px;
margin-top:30px;
}

.service-card{
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}


/* TRUST */

.trust{
background:#eef4ff;
padding:60px 0;
text-align:center;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
gap:25px;
margin-top:30px;
}


/* FOOTER */

.footer{
background:#1f2937;
color:white;
text-align:center;
padding:20px;
margin-top:40px;
}
.footer{
background:#1e1e2f;
color:white;
padding:40px 0;
margin-top:60px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
}

.footer a{
color:white;
text-decoration:none;
}

.footer a:hover{
text-decoration:underline;
}

.copyright{
text-align:center;
margin-top:30px;
font-size:14px;
}

/* Babysitter Team Section */

.team{
padding:60px 0;
background:#f9fbff;
text-align:center;
}

.section-intro{
max-width:600px;
margin:10px auto 40px;
color:#555;
}

.team-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
gap:25px;
}

.team-card{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
transition:transform 0.2s;
display:flex;
flex-direction:column;
}

.team-card:hover{
transform:translateY(-5px);
}

.team-card img{
width:100%;
height:230px;
object-fit:cover;
border-radius:8px;
margin-bottom:15px;
}

.team-card h3{
margin-bottom:5px;
}

.team-card .role{
color:#2b7cff;
font-weight:600;
margin-bottom:10px;
}

/* Resume Button */

.resume-btn{
display:inline-block;
background:#ff6b81;
color:white;
padding:10px 16px;
text-decoration:none;
border-radius:6px;
font-weight:600;
font-size:14px;
margin-top:auto;
transition:background 0.2s;
}

.resume-btn:hover{
background:#ff4e73;
}

/* Navbar */

.site-header{
position:sticky;
top:0;
z-index:1000;
background:white;
box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 40px;
}

/* Brand Area */

.brand-area{
display:flex;
align-items:center;
gap:12px;
}

/* Logo */

.logo{
height:60px;
width:auto;
}

/* Brand Text */

.brand-text{
display:flex;
flex-direction:column;
line-height:1.1;
}

.brand-main{
font-size:20px;
font-weight:700;
color:#444;
}

.brand-sub{
font-size:14px;
color:#888;
}

/* Navigation Links */

.nav-links{
list-style:none;
display:flex;
gap:30px;
}

.nav-links a{
text-decoration:none;
font-weight:600;
color:#444;
transition:color 0.2s;
}

.nav-links a:hover{
color:#ff7ab6;
}

.nav-links a.active{
color:#ff7ab6;
}

.hero-slider{
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.slide{
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active{
  opacity: 1;
}

.slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  color: white;
  background: rgba(0,0,0,0.4);
  padding: 40px;
  border-radius: 10px;
}

.hero-text h1{
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-text p{
  font-size: 20px;
  margin-bottom: 20px;
}

.hero-btn{
  background:#ff6b8a;
  color:white;
  padding:12px 25px;
  text-decoration:none;
  border-radius:6px;
  font-weight:bold;
}

.hero-btn:hover{
  background:#ff4e73;
}
.whatsapp-btn{
display:inline-block;
background:#25D366;
color:white;
padding:12px 20px;
border-radius:6px;
text-decoration:none;
font-weight:600;
margin-top:10px;
}

.whatsapp-btn:hover{
background:#1ebe5d;
}

.contact-section{
padding:60px 20px;
background:#f9f9f9;
}

.contact-container{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.contact-form{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.form-group{
margin-bottom:20px;
}

.form-group label{
display:block;
margin-bottom:5px;
font-weight:500;
}

.form-group input,
.form-group textarea{
width:100%;
padding:10px;
border:1px solid #ddd;
border-radius:6px;
}

.btn-primary{
background:#ff6b81;
color:white;
padding:12px 20px;
border:none;
border-radius:6px;
cursor:pointer;
}

.whatsapp-btn{
display:inline-block;
margin-top:10px;
background:#25D366;
color:white;
padding:12px 20px;
text-decoration:none;
border-radius:6px;
}

.site-footer{
background:#222;
color:white;
padding:40px 20px;
}

.footer-container{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

.footer-bottom{
text-align:center;
margin-top:20px;
font-size:14px;
color:#ccc;
}

/* ================= MOBILE NAVBAR ================= */

@media (max-width:768px){

.navbar{
flex-direction:row;
align-items:center;
padding:10px 15px;
}

.menu-toggle{
display:block;
margin-left:auto;
}

/* Hide menu initially */

.nav-links{
display:none;
flex-direction:column;
position:absolute;
top:60px;
left:0;
width:100%;
background:white;
padding:15px 0;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

/* Show when hamburger clicked */

.nav-links.show{
display:flex;
}

.nav-links li{
text-align:center;
padding:12px 0;
}

/* Reduce logo height */

.logo{
height:40px;
}

/* Hide subtitle on mobile */

.brand-sub{
display:none;
}

}
@media (max-width:768px){

.contact-container{
display:flex;
flex-direction:column;
}

.contact-form{
order:1;
width:100%;
}

.contact-info{
order:2;
width:100%;
margin-top:30px;
}

}

@media (max-width:768px){

.small-hero{
height:220px;
padding:10px;
display:flex;
position: relative;
align-items:center;
justify-content:center;
overflow:hidden;
}

.hero-text{
width:85%;
padding:12px 15px;
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
background:rgba(0,0,0,0.45);
color:white;
padding:12px 15px;
border-radius:10px;
text-align:center;
width:85%;
}

.hero-text h1{
font-size:22px;
margin-bottom:6px;

}

.hero-text p{
font-size:13px;
line-height:1.3;
}

}

.footer-about{
text-align:center;
margin-top:30px;
max-width:600px;
margin-left:auto;
margin-right:auto;
}

.footer-about h3{
margin-bottom:10px;
}

.footer-about p{
color:#ccc;
font-size:14px;
line-height:1.5;
}

/* Social icons */

.footer-social{
margin-top:20px;
display:flex;
justify-content:center;
gap:20px;
}

.footer-social img{
width:28px;
height:28px;
transition:transform 0.2s;
}

.footer-social img:hover{
transform:scale(1.15);
}