:root{
  --light: #f09857;
  --medium: #cd7433;
  --dark: #9c5f33;
  --black: #000000;
}

body{
  margin:0;
  font-family:"Scope One", serif;
  background-color:var(--medium);
  color:black;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: visible; /* allow dropdown to show outside if needed */
}

/* background */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* orange overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(240,152,87,0.36); /* slightly different but same palette */
  z-index: 2;
}

/* logo */
.hero-logo {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 160px;
  z-index: 6;
  pointer-events: none;
}

/* title area */
.hero-title {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 750px;
  text-align: center;
  color: white;
  z-index: 7;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.6);
}

/* button / dropdown */
.dropdown { position: relative; display: inline-block; }

.adopt-btn {
  display:inline-block;
  margin-top:16px;
  padding:12px 26px;
  background:var(--dark);
  color:white;
  text-decoration:none;
  border-radius:10px;
  font-size:1.15rem;
  cursor:pointer;
  border:2px solid rgba(255,255,255,0.85);
}

/* dropdown menu */
.dropdown-content {
  display: none;
  position: absolute;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  min-width: 180px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
  z-index: 20; /* higher than title and logo */
}

/* items */
.dropdown-content a {
  display:block;
  padding:12px 16px;
  color:black;
  text-decoration:none;
  font-size:1rem;
}

.dropdown-content a:hover,
.dropdown-content a:focus {
  background: var(--light);
}

/* SHOW menu on hover (desktop) OR when focused (keyboard/tap) */
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: block;
}

/* small tweak: close menu when link clicked on touch (so user sees new page) */
.dropdown-content a { -webkit-tap-highlight-color: rgba(0,0,0,0.1); }

/* PHILOSOPHY & rest (kept simple) */
.philosophy {
  background: var(--light);
  padding: 40px;
  text-align: center;
  z-index: 1;
}

.philosophy h2 { font-size: 3rem; margin-bottom: 20px; }
.philo-flex { display:flex; flex-wrap:wrap; justify-content:center; gap:40px; align-items:center;}
.philo-img { width:300px; border-radius:20px; }
.philo-text { max-width:500px; line-height:1.7; font-size:1.15rem; }

footer {
  background: var(--dark);
  color:white;
  text-align:center;
  padding:15px;
}
