/* style.css - Twisted Thorn */
 
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@600;700&family=Jost:wght@300;400;500&display=swap');
 
/* Custom Properties */
:root {
  --primary: #2f7a3e;
  --accent:  #5bc77a;
  --dark:    #0f0f0f;
  --muted:   #6c757d;
 
  --font-heading: 'Bell MT', 'Cormorant SC', Georgia, serif;
  --font-body:    'Jost', system-ui, -apple-system, sans-serif;
}
 
/* Base */
* { box-sizing: border-box; }
 
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
  color: #222;
}
 
/* Headings */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.2;
}
 
#hero h1 {
  letter-spacing: 0.1em;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}
#hero h1 {
  letter-spacing: 0.1em;
  text-shadow: 0 3px 12px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.9);
}

.hero-sub {
  display: block;
  font-size: 0.45em;
  letter-spacing: 0.14em;
  margin-top: 0.4rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
@media (max-width: 576px) {
  .hero-sub { font-size: 0.56em; }
}

#hero img.hero-logo {
  width: 220px;
  max-width: 60%;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 3px 14px rgba(0,0,0,0.75)) drop-shadow(0 1px 3px rgba(0,0,0,0.95));
}
header, #hero {
  background-image: url('../img/regina-ariel-hero-summer.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

header::before, #hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 0;
}

#hero .container {
  position: relative;
  z-index: 1;
}
#hero .lead {
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
 
/* Paragraphs */
p {
  font-family: var(--font-body);
  font-weight: 400;
}
 
.lead {
  font-weight: 300;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
 
/* Navbar */
.navbar-brand img {
  height: 42px;
  width: auto;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.15;
  color: #fff;
}

.brand-sub {
  font-size: 0.6em;
  letter-spacing: 0.12em;
  color: var(--accent);
}
@media (max-width: 576px) {
  .brand-sub-ext { display: none; }
}
 
.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
 
/* Hero */
header, #hero {
  background-image: url('../img/regina-ariel-hero-summer.jpg');
  background-size: cover;
  background-position: center;
}
 
#hero {
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
 
#hero img.hero-logo {
  width: 300px;
  max-width: 60%;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
}
 
/* Sections */
section { padding: 80px 0; }
.bg-light { background: #fbfbfb; }
 
/* Gallery */
.img-fluid { transition: transform .3s, box-shadow .3s; }
.img-fluid:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}
 
/* Buttons */
.btn-success {
  background: var(--primary);
  border: none;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.btn-success:hover { background: #256734; }
 
/* Magnific Popup */
.mfp-title { font-weight: 700; margin-bottom: .5rem; }
.mfp-caption { font-size: .95rem; color: #f1f1f1; }
.mfp-content .mfp-figure .mfp-bottom-bar { background: transparent; }
.mfp-bottom-bar { padding-top: .8rem; }
 
/* Accordion */
.accordion-button {
  font-family: var(--font-body);
  font-weight: 500;
}
.accordion-button:not(.collapsed) { color: var(--primary); }
 
/* Footer */
footer {
  background: #0b0b0b;
  color: #cfcfcf;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.03em;
}
 
/* Responsive */
@media (max-width: 768px) {
  #hero { height: 60vh; }
  section { padding: 50px 0; }
}
/* Form fields - darker border, green on focus */
.form-control,
.form-check-input {
  border-color: #999;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(47, 122, 62, 0.2);
  outline: none;
}

.form-check-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(47, 122, 62, 0.2);
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}
.footer-link {
  color: var(--accent);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--primary);
}