:root{
  --navy:#2b2415;
  --gold:#c9972b;
  --gold-light:#f7d889;
  --cream:#fff8e6;
  --soft:#fffdf7;
  --text:#3d3422;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:
    linear-gradient(rgba(255,248,230,0.92), rgba(255,248,230,0.92)),
    url("background.jpg");
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
  color:var(--text);
}

/* HEADER */
header{
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(10px);
  padding:18px 24px;
  box-shadow:0 4px 20px rgba(0,0,0,.10);
}

.nav{
  max-width:1100px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.brand h1{
  color:var(--navy);
}

.brand p{
  color:var(--gold);
  font-size:13px;
  font-weight:bold;
}

nav a{
  margin-left:16px;
  text-decoration:none;
  color:var(--navy);
  font-weight:bold;
}

nav a:hover{
  color:var(--gold);
}

/* HERO */
.hero{
  padding:100px 24px;
  background:
    linear-gradient(rgba(43,36,21,.72), rgba(201,151,43,.55)),
    url("hero.jpg");
  background-size:cover;
  background-position:center;
  color:white;
}

.hero h2{
  font-size:44px;
  max-width:750px;
  margin-bottom:18px;
}

.hero p{
  max-width:700px;
  font-size:18px;
}

/* BUTTON */
.btn{
  display:inline-block;
  background:var(--gold);
  color:white;
  padding:13px 22px;
  border:none;
  border-radius:8px;
  font-weight:bold;
  text-decoration:none;
  cursor:pointer;
  transition:.25s;
}

.btn:hover{
  background:#b38322;
  transform:translateY(-2px);
}

/* SECTIONS */
section{
  padding:60px 24px;
}

.container{
  max-width:1100px;
  margin:auto;
}

.panel{
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(10px);
  padding:30px;
  border-radius:14px;
  margin-bottom:30px;
  box-shadow:0 8px 25px rgba(0,0,0,.08);
  border:1px solid rgba(201,151,43,.25);
}

.label{
  color:var(--gold);
  font-size:12px;
  letter-spacing:2px;
  margin-bottom:10px;
  font-weight:bold;
}

h2{
  color:var(--navy);
  margin-bottom:15px;
}

h3{
  color:var(--navy);
}

.list{
  padding-left:20px;
}

.list li{
  margin-bottom:6px;
}

/* HOME IMAGE CARDS */
.home-images,
.about-images,
.program-cards,
.services-cards{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:20px;
}

.img-card,
.about-img-card{
  width:230px;
  text-align:center;
  transition:.3s;
}

.img-card img,
.about-img-card img{
  width:100%;
  height:130px;
  object-fit:cover;
  border-radius:10px;
  transition:.3s;
}

.img-card:hover img,
.about-img-card:hover img{
  transform:scale(1.05);
  box-shadow:0 8px 20px rgba(0,0,0,.25);
}

.img-card p,
.about-img-card p{
  margin-top:8px;
  font-size:14px;
}

/* MAP */
.about-map{
  width:100%;
  height:300px;
  border:0;
  border-radius:12px;
  margin-top:15px;
}

/* PROGRAM / SERVICES CARDS */
.program-card,
.service-card{
  width:260px;
  background:rgba(255,255,255,0.95);
  border-radius:14px;
  padding:16px;
  text-align:center;
  box-shadow:0 5px 18px rgba(0,0,0,.08);
  border-top:5px solid var(--gold);
  transition:.3s;
}

.service-card{
  width:300px;
}

.program-card:hover,
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(0,0,0,.16);
}

.program-card img,
.service-card img{
  width:100%;
  height:140px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:12px;
  transition:.3s;
}

.service-card img{
  height:145px;
}

.program-card:hover img,
.service-card:hover img{
  transform:scale(1.04);
}

.program-card p,
.service-card p{
  font-size:14px;
}

/* CONTACT PAGE */
.contact-page-layout{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:24px;
  align-items:start;
}

.contact-info-card,
.contact-page-form{
  background:rgba(255,255,255,0.95);
  border-radius:14px;
  padding:28px;
  box-shadow:0 6px 22px rgba(0,0,0,.10);
  border-top:5px solid var(--gold);
  transition:.3s;
}

.contact-info-card:hover,
.contact-page-form:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 30px rgba(0,0,0,.16);
}

.contact-info-card p{
  margin-bottom:10px;
}

.contact-map{
  width:100%;
  height:260px;
  border:0;
  border-radius:12px;
  margin-top:20px;
}

/* FORM ROW STRUCTURE */
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.form-group{
  display:flex;
  flex-direction:column;
}

.contact-form label{
  font-weight:bold;
  color:var(--navy);
  margin-bottom:6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
  width:100%;
  padding:13px;
  margin-bottom:16px;
  border:1px solid #d6c28a;
  border-radius:8px;
  font-size:15px;
  background:white;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(201,151,43,.20);
}

/* FOOTER */
footer{
  background:var(--navy);
  color:white;
  text-align:center;
  padding:25px;
}

/* MOBILE */
@media(max-width:850px){
  .nav{
    flex-direction:column;
    align-items:flex-start;
  }

  nav a{
    display:inline-block;
    margin:8px 10px 0 0;
  }

  .hero h2{
    font-size:34px;
  }

  .contact-page-layout,
  .form-row{
    grid-template-columns:1fr;
  }
}