/* Main container layout */
.container {
  min-height: 100vh;
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (max-width: 600px) {
  .container {
    padding: 0 0 18px 0;
  }
}
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

.home-centered-text p,
.partial-listing,
.row ul li {
  font-size: 1.35rem;
  line-height: 1.5;
}

h1 {
  color: var(--cream) !important;
  font-size: 3.5rem !important;
  line-height: 1.1;
  text-shadow: 0 2px 8px #000b;
}

p {
  font-size: 1.35rem !important;
  line-height: 1.5 !important;
}
:root{
  --bg-wood: url('../img/background-wood.svg');
  --bg-overlay: rgba(247,241,230,0.65);
  --accent-coral: #F28C7A;
  --cream: #fffdd0;
  --cream-dark: #bfa96a;
  --bg-green-texture: url('../img/green-noise.png');
}

body {
  font-size: 16px;
  font-family: 'Nunito', 'Helvetica Neue', Arial, sans-serif;
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Background textures are applied via a fixed ::before layer so content remains scrollable */
body::before{
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--bg-green-texture), linear-gradient(180deg,#233b2a 0%,#1a2a1a 100%);
  background-size: 600vw 600vh, cover;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
  opacity: 1;
  filter: saturate(1) contrast(1) blur(3px);
}

body.bg-wood::before,
.container.bg-wood::before,
.container::before {
  background: var(--bg-green-texture), linear-gradient(180deg,#233b2a 0%,#1a2a1a 100%) !important;
  background-size: 400px 400px, cover;
  background-repeat: repeat, no-repeat;
  background-attachment: fixed, fixed;
  opacity: 1;
}
body.bg-plain::before{ background-image: none; background-color: #f7efe4; }

.column {
  float: left;
  width: 50%;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.center {
  text-align: center;
}

/* --- Branding --- */


.site-header{
  display: block;
  text-align: center;
  padding: 0 0 18px 0;
  background: none;
}
.logo img {
  height: 72px;
  width: auto;
  display: block;
}

/* Mobile hamburger */
.mobile-toggle{
  display:none;
  background:transparent;
  border:none;
  width:44px;
  height:44px;
  align-items:center;
  justify-content:center;
  z-index:9999;
}
.mobile-toggle .bar{background-color: black;width:26px;height:3px;margin:3px 0;border-radius:3px;transition:all .12s ease}

/* nav adjustments for small screens */
nav.main-nav{position:relative;}
nav.main-nav ul{display:flex;gap:18px;align-items:center}
@media (max-width:768px){
  .mobile-toggle{display:block}
  nav.main-nav ul{
    flex-direction:column;
    position:fixed;
    right:16px;
    top:80px;
    background: var(--cream);
    padding:16px;
    border-radius:10px;
    box-shadow:0 14px 40px #bfa96a22;
    display:none;
    border: 1px solid #e0e0db;
  }
  body.nav-open nav.main-nav ul{display:flex}
}

/* Footer control panel */
.footer-panel{display:flex;gap:18px;align-items:center;justify-content:center;flex-wrap:wrap;flex-direction:column;margin-bottom:32px}
.hero-photo img{max-width:1100px;width:100%;height:auto;max-height:520px;object-fit:cover;border-radius:8px;box-shadow:0 10px 30px rgba(58,43,34,0.12);display:block;margin:8px auto}
.bg-switch{display:inline-flex;gap:6px}

/* Socials */
.footer-social a{color:#6a4b37;margin:0 8px;font-size:18px}

/* Hero reveal animation */
.page-hero{opacity:0;transform:translateY(8px);transition:all .6s cubic-bezier(.2,.9,.2,1)}
.page-hero.reveal{opacity:1;transform:none}

/* small helper for CTA */
.cta-button{transition:all .24s ease;box-shadow:0 10px 20px rgba(58,43,34,0.06)}
.cta-button:hover{transform:translateY(-3px)}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}
nav ul li a {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #23210a;
  background: var(--cream);
  font-size: 1.18rem;
  letter-spacing: 0.5px;
  transition: all .18s ease;
  border: 1px solid #e0e0db;
}
nav ul li a.cta-link {
  background: linear-gradient(90deg,#d48c5b,#c07b3b);
  color: var(--cream) !important;
  border: none;
  box-shadow: 0 4px 16px #c07b3b33;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 10px 22px;
}
nav ul li a.cta-link:hover, nav ul li a.cta-link.active {
  background: linear-gradient(90deg,#c07b3b,#d48c5b);
  color: var(--cream) !important;
  box-shadow: 0 6px 20px #c07b3b44;
}
}
nav ul li a:hover{
  background: #ecebe6;
  transform: translateY(-2px);
  color: #bfa96a;
  border-color: #bfa96a;
}
nav ul li a.active {
  background: #bfa96a;
  color: var(--cream);
  box-shadow: 0 2px 12px #bfa96a44;
  border-color: #bfa96a;
}
.bio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 12px;
}
.bio-left img {
  width: 100%;
  height: auto;
  max-width: 520px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(58,43,34,0.12);
  border: 1px solid rgba(74,50,38,0.06);
}
.bio-right {
  padding: 8px 0;
}
.bio-right p {
  font-size: 16px;
  line-height: 1.8rem;
  color: #3a2b22;
}
.contact-title p a { color: #4a3226; font-weight:700; text-decoration:none }
.bio-right p b {
  color: #c07b3b;
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 40px 0;
}
.contact-left h1 {
  font-size: 40px;
  margin: 10px 0px;
  color: #4a3226;
}
.contact-lef ul {
  margin: 0;
  padding: 0;
}
.contact-left ul {
  list-style: none;
}

.contact-left ul li {
  line-height: 46px;
}
.contact-left ul li a {
  color: var(--cream);
  font-size: 20px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
}

.contact-right img {
  width: 100%;
}
.contact-right {
  margin-top: 50px;
}

.contact-left {
  padding-top: 130px;
}

/* Contact CSS */
.contact-page {
  width: 50%;
  margin: auto;
  margin-bottom: 20px;
}
.contact-title h1 {
  margin-bottom: 20px;
}
.contact-title p {
  line-height: 24px;
}

.contact-title p a {
  color: #f28C7a;
  font-weight: 800;
  text-decoration: none;
}
form {
  margin-top: 30px;
}
form input, textarea {
  display: block;
  width: 100%;
  padding: 14px 12px;
  margin-bottom: 12px;
  font-size: 15px;
  border: 1px solid rgba(58,43,34,0.12);
  border-radius: 8px;
  background: #fff;
}
form textarea{
  height: 100px;
  font-size: 17px;
}
form a#book-appointment-button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
form button,
form a#book-appointment-button {
  padding: 12px 20px;
  font-weight: 700;
  border-radius: 8px;
  outline: none;
  color: #fff;
  border: none;
  font-size: 15px;
  transition: .18s all;
  background: linear-gradient(90deg,#d48c5b,#c07b3b);
  box-shadow: 0 8px 20px rgba(192,123,59,0.18);
}
form button:hover,
form a#book-appointment-button:hover {
  transform: translateY(-2px);
  cursor: pointer;
}

footer {
  margin-top: 60px;
  padding: 20px 0 40px 0;
  color: var(--cream);
  background: transparent;
  text-align: center;
}

footer a {
  color: var(--cream) !important;
  font-weight: 700;
  text-decoration: none;
}

/* small hero/banner */
.page-hero {
  background: linear-gradient(180deg, rgba(196,124,67,0.08), rgba(0,0,0,0));
  border-radius: 10px;
  padding: 18px 20px;
  margin: 18px 0 26px 0;
}
.page-hero h1 {
  margin: 0;
  color: #4a3226;
  font-family: 'Merriweather', serif;
}

.cta-button{
  display:inline-block;
  padding:10px 14px;
  border-radius:8px;
  background:linear-gradient(90deg,#d48c5b,#c07b3b);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  margin: 18px 0 0 0;
}
/* Subtle coral accents throughout the site */
.site-header{border-bottom:4px solid rgba(242,140,122,0.12)}
.cta-button{box-shadow:0 10px 26px rgba(242,140,122,0.06)}
.cta-button.coral{background:linear-gradient(180deg,var(--accent-coral),#d95748);color:#fff;border:none}
.cta-button.coral:hover{transform:translateY(-3px);box-shadow:0 14px 30px rgba(242,140,122,0.18)}
.cta-button.coral:focus{outline:none;box-shadow:0 0 0 4px rgba(242,140,122,0.22)}
.btn-listen.coral,.btn-book.coral{background:linear-gradient(180deg,var(--accent-coral),#d95748);color:#fff}

/* Hero overlay for homepage */
.hero-photo{position:relative;overflow:hidden;border-radius:10px}
.hero-photo img{display:block;width:100%;height:auto;border-radius:0}
.hero-overlay{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;padding:18px;z-index:2;pointer-events:auto}
.hero-overlay-inner{max-width:920px;width:calc(100% - 36px);background:transparent;padding:20px;border-radius:12px;text-align:left;color:#fff;text-shadow:0 1px 2px rgba(0,0,0,0.6);max-height:64vh;overflow:auto}
.hero-overlay-inner h2{margin:0 0 12px;color:#fff;font-family:'Merriweather',serif;font-size:28px}
.hero-overlay-inner p{margin:0 0 12px;color:rgba(255,255,255,0.95);line-height:1.68;font-size:15px}
.hero-overlay-inner .cta-wrap{text-align:center;margin-top:12px}

/* Hero intro block (replaces inline styles) */
.hero-intro{margin-bottom:22px;padding:18px 24px;border-radius:10px;box-shadow:0 8px 20px rgba(58,43,34,0.06);background:linear-gradient(180deg,rgba(255,255,255,0.6),rgba(255,255,255,0.4));display:flex;align-items:center;gap:24px}
.hero-icon{flex:0 0 160px}
.hero-icon img{width:160px;display:block}
.hero-content{flex:1}
.hero-content h1{font-family:'Merriweather',serif;color:var(--deep-cocoa);margin:0 0 12px}
.hero-content p{margin:0;color:var(--deep-cocoa);max-width:840px}

.contact-title p.lead{font-size:18px;line-height:1.6;color:var(--deep-cocoa);margin:8px 0 0}
.contact-title p.note{margin-top:12px;color:var(--soft-brown)}

.partial-listing{margin:6px 0 18px;font-weight:700}

/* Sprinkle accent color */
.partial-listing{color:var(--accent-coral)}
.play-wrap i{background:linear-gradient(90deg,var(--accent-coral),#d48c5b)}
.footer-panel a:hover{color:var(--accent-coral) !important}
/* subtle link hover accent */
a:hover{color:var(--accent-coral)}

/* header inner layout */
.header-inner{display:flex;gap:18px;align-items:center}

/* Header CTA layout */
.header-cta .cta-button{margin-top:8px;display:inline-block;padding:8px 14px;border-radius:8px}

/* Ensure overlay centers on small screens and remains readable */
@media (max-width:768px){
  /* On small screens anchor overlay toward the bottom for better readability */
  .hero-overlay{position:static;display:block;align-items:stretch;justify-content:flex-start;padding:0;margin-top:12px;pointer-events:auto;}
  .hero-overlay-inner{padding:14px;background:var(--bg-overlay);text-align:left;width:100%;max-height:none;border-radius:12px;color:#3a2b22;text-shadow:none;overflow:visible}
  .hero-overlay-inner h2{font-size:20px;color:#4a3226}
  .hero-overlay-inner p{font-size:14px;color:#3a2b22}
  .hero-overlay-inner .cta-wrap{margin-top:12px}
  .hero-overlay-inner .cta-button{min-width:150px}
}

@media (max-width:420px){
  .hero-overlay-inner{padding:12px}
  .hero-overlay-inner h2{font-size:18px}
  .hero-overlay-inner p{font-size:13px}
  .hero-overlay-inner .cta-button{min-width:140px;padding:10px 12px}
}

/* Ensure the hero-image keeps its rounded top corners when the overlay sits below it */
.hero-photo{overflow:visible}
.hero-photo img{border-top-left-radius:8px;border-top-right-radius:8px;border-bottom-left-radius:0;border-bottom-right-radius:0}

@media screen and (max-width: 992px) {
  .bio{
    grid-template-columns: 1fr;
    text-align: left;
  }
  .site-header{
    flex-direction: column;
    gap: 12px;
  }
  nav ul { flex-wrap: wrap; justify-content:center }
}

@media screen and (max-width: 768px) {
  .contact-page{
    width: 100%;
  }
  .contact{
    width: 100%;
  }
  .contact-left ul li a{
    font-size: 15px;
  }
  .contact-left{
    padding-top: 0px !important;
  }
  .contact-page {
    margin-bottom: 50px;
  }
  form button,
  form a#book-appointment-button {
    margin-top: 30px;
  }
}

@media screen and (max-width: 500px) {
  .logo img { height: 60px }
  .bio-right p { font-size: 15px }
}

/* Home page centered text */
.home-centered-text {
  text-align: center;
  color: var(--cream);
  margin: 32px auto 0 auto;
  max-width: 700px;
}
.home-centered-text h1 {
  color: var(--cream);
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px #000b;
}
.home-centered-text p {
  color: var(--cream);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
@media (max-width: 600px) {
  .home-centered-text {
    font-size: 1rem;
    margin-top: 18px;
    padding: 0 8px;
  }
  .home-centered-text h1 {
    font-size: 1.3rem;
  }
}


/* Desktop logo size */
.main-logo {
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 18px auto;
  filter: drop-shadow(0 4px 24px #0008);
}

@media (max-width: 600px) {
  .main-logo {
    width: 160px;
    max-width: 90vw;
    margin-top: 10px;
  }
  .tagline {
    font-size: 0.95rem;
    margin-top: 4px;
  }
  .home-nav ul {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    padding: 24px 12px 18px 12px;
    display: none;
    background: linear-gradient(180deg, #233b2a 80%, #1a2a1a 100%);
    position: fixed;
    top: 70px;
    left: 0;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    z-index: 1000;
    box-shadow: 0 8px 32px #000a;
    border-radius: 0 0 18px 18px;
    border: none;
  }
  body.nav-open .home-nav ul {
    display: flex !important;
  }
  .home-nav ul li a {
    font-size: 1.08rem;
    padding: 14px 32px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    text-align: center;
    background: #fff;
    color: #233b2a !important;
    border: none;
    border-radius: 999px;
    box-shadow: 0 2px 8px #0002;
    display: block;
    margin: 0 auto;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  }
  .home-nav ul li a.cta-link {
    padding: 14px 36px;
  }
  .home-nav ul li a.cta-link {
    background: linear-gradient(90deg,#d48c5b,#c07b3b);
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 16px #c07b3b33;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 14px 0;
  }
  .home-nav ul li a.cta-link:hover, .home-nav ul li a.cta-link.active {
    background: linear-gradient(90deg,#c07b3b,#d48c5b);
    color: #fff !important;
    box-shadow: 0 6px 20px #c07b3b44;
  }
  .home-nav ul li:last-child a {
    border-bottom: none;
    padding: 15px;
  }
  .home-nav ul li a.active {
    background: #bfa96a;
    color: #fff !important;
    border-radius: 999px;
    box-shadow: 0 4px 16px #bfa96a44;
    border: none;
  }
  .home-nav ul li a:hover {
    background: var(--cream);
    color: #bfa96a !important;
    box-shadow: 0 2px 12px #bfa96a33;
    border: none;
  }
  .mobile-toggle {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #1a2a1aee;
    border-radius: 8px;
    border: 1px solid #233b2a;
    z-index: 1100;
    align-items: center;
    justify-content: center;
  }
  .mobile-toggle .bar {
    background: var(--cream);
    width: 28px;
    height: 4px;
    margin: 4px 0;
    border-radius: 2px;
    transition: all .18s;
  }
}
