*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
}

body{
  color:#222;
  line-height:1.6;
  background:#faf7f2;
  font-family:"Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* HERO */

.hero{
  height:75vh;
  background:url("images/banner.jpg") center/cover no-repeat;
  position:relative;
}

.overlay{
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.45);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
  padding:1rem;
}

.hero h1{
  font-size:3rem;
  margin-bottom:1rem;
}

.cta-btn{
  margin-top:1.5rem;
  background:#ffb703;
  color:#000;
  padding:0.7rem 1.5rem;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
}

.cta-btn:hover{
  background:#ffd166;
}

/* SECTIONS */

section{
  padding:3rem 0;
}

.container{
  max-width:900px;
  margin:auto;
  padding:0 1rem;
}

h2{
  margin-bottom:1rem;
  font-size:2rem;
}

h1{
  font-weight:700;
}

h2, h3{
  font-weight:600;
}

/* CARDS */

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

.card{
  border:1px solid #e3e3e3;
  border-radius:10px;
  padding:1.2rem;
  background:#ffffff;
  box-shadow:0 6px 16px rgba(0,0,0,0.06);
  transition:transform .15s ease, box-shadow .15s ease;
}

.card:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 22px rgba(0,0,0,0.12);
}

/* GALLERY */

.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:1rem;
  margin:1rem 0;
}

.gallery img{
  width:100%;
  border-radius:8px;
}

/* CONTACT FORM */

form{
  display:grid;
  gap:0.8rem;
  margin-top:1rem;
}

input, textarea{
  padding:0.8rem;
  border-radius:6px;
  border:1px solid #ccc;
  font-size:1rem;
}

textarea{
  min-height:120px;
}

button{
  padding:0.8rem;
  border:0;
  background:#219ebc;
  color:#fff;
  font-size:1rem;
  border-radius:6px;
  cursor:pointer;
}

button:hover{
  background:#48cae4;
}

/* FOOTER */

footer{
  text-align:center;
  padding:2rem 0;
  background:#111;
  color:#eee;
}

footer a{
  color:#fff;
}

.socials{
  margin-top:0.8rem;
  display:flex;
  justify-content:center;
  gap:1rem;
}

.socials a{
  color:#fff;           /* footer colour */
  text-decoration:none;
}

.socials svg{
  width:28px;
  height:28px;
  transition:0.2s ease;
}

.socials a:hover svg{
  color:#48cae4;        /* hover colour — match your theme */
  transform:translateY(-2px);
}