/* Selah Sound - Light, friendly palette */
:root{
  --bg: #fffaf3;
  --surface: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --brand: #c9a45a; /* warm gold */
  --brand-2: #f3e6cc; /* soft cream */
  --line: rgba(31,41,55,0.10);
  --shadow: 0 12px 30px rgba(17,24,39,0.08);
  --radius: 18px;
  --maxw: 1120px;
}

*{box-sizing:border-box;}
html,body{height:100%;}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 20% 0%, var(--brand-2), transparent 60%),
              radial-gradient(1000px 700px at 90% 10%, rgba(201,164,90,0.18), transparent 55%),
              var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a{color: inherit; text-decoration: none;}
a:hover{text-decoration: underline;}
img{max-width:100%; height:auto; display:block;}

.container{
  width: min(var(--maxw), calc(100% - 32px));
  margin: 0 auto;
}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto; padding:10px 14px;
  background: var(--surface); border:1px solid var(--line); border-radius: 10px;
  box-shadow: var(--shadow); z-index: 9999;
}

/* Header */
/* =========================
   FIXED STICKY HEADER (GLOBAL)
========================= */

.site-header{
  position: fixed;   /* force fixed, not sticky */
  top: 0;
  left: 0;
  right: 0;

  backdrop-filter: blur(10px);
  background: rgba(255,250,243,0.92);
  border-bottom: 1px solid var(--line);

  z-index: 9999;
}

/* Prevent content hiding under header */
body{
  padding-top: 80px;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 12px 0;
}

.brand{
  display:flex; align-items:center; gap:12px; min-width: 220px;
}
.brand img{
  width:44px; height:44px; border-radius: 14px;
  box-shadow: 0 8px 18px rgba(17,24,39,0.10);
}
.brand .name{
  display:flex; flex-direction:column;
}
.brand .name strong{
  font-size: 1.05rem;
  letter-spacing: 0.2px;
}
.brand .name span{
  font-size: 0.85rem;
  color: var(--muted);
}

/* Desktop nav */
.nav{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end;
}
.nav a{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  color: rgba(31,41,55,0.92);
}
.nav a:hover{
  background: rgba(201,164,90,0.12);
  text-decoration:none;
}
.nav a[aria-current="page"]{
  background: rgba(201,164,90,0.18);
  border-color: rgba(201,164,90,0.25);
}

/* WhatsApp nav image + gold glow hover */
.nav-whatsapp{
  display:flex;
  align-items:center;
  padding: 0;
  border-radius: 12px;
}
.nav-whatsapp:hover{ background: transparent; }
.nav-whatsapp img{
  height:36px;
  width:auto;
  object-fit:contain;
  border-radius:10px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}
.nav-whatsapp:hover img{
  transform: translateY(-2px);
  box-shadow:
    0 0 0 2px rgba(201,164,90,0.35),
    0 0 14px rgba(201,164,90,0.55),
    0 6px 18px rgba(17,24,39,0.18);
  filter: brightness(1.05) saturate(1.08);
}

/* =========================
   MOBILE MENU (WORKING)
========================= */

/* Hide checkbox but keep it functional */
.nav-toggle{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

/* Hamburger button */
.nav-hamburger{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  background:var(--surface);
  box-shadow:0 8px 18px rgba(17,24,39,0.08);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.nav-hamburger span{
  width:18px;
  height:2px;
  background: rgba(31,41,55,0.85);
  border-radius:2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Dropdown panel */
.nav-mobile{
  display:none;
  border-top:1px solid var(--line);
  background:rgba(255,250,243,0.96);
  backdrop-filter:blur(10px);
}

.nav-mobile-inner{
  padding:14px 0 18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.nav-mobile-inner a{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:var(--surface);
  font-weight:800;
  color: rgba(31,41,55,0.92);
  box-shadow: 0 10px 20px rgba(17,24,39,0.06);
}

.nav-mobile-inner a:hover{
  text-decoration:none;
  background: rgba(201,164,90,0.10);
  border-color: rgba(201,164,90,0.22);
}

/* WhatsApp row inside mobile menu */
.nav-mobile-whatsapp{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background:rgba(201,164,90,0.10);
  border-color:rgba(201,164,90,0.30);
}

.nav-mobile-whatsapp img{
  height:30px;
  width:auto;
  border-radius:10px;
}

/* OPEN STATE: checkbox controls dropdown because it's a sibling now */
#nav-toggle:checked ~ .nav-mobile{
  display:block;
}

/* Hamburger → X when open */
#nav-toggle:checked ~ .header-inner .nav-hamburger span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
#nav-toggle:checked ~ .header-inner .nav-hamburger span:nth-child(2){
  opacity:0;
}
#nav-toggle:checked ~ .header-inner .nav-hamburger span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero (image-only) */
.hero{
  padding: 28px 0 10px;
}
.hero-card{
  overflow:hidden;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-media img{
  width:100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(17,24,39,0.08);
  text-decoration:none;
}
.btn:hover{
  transform: translateY(-1px);
  text-decoration:none;
}
.btn-primary{
  background: linear-gradient(180deg, rgba(201,164,90,0.95), rgba(201,164,90,0.82));
  border-color: rgba(201,164,90,0.4);
  color: #1b1304;
}
.btn img.icon{
  width: 22px; height:22px;
}

/* Sections */
.section{
  padding: 18px 0 32px;
}
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.card{
  grid-column: span 12;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.card h2{
  margin: 0 0 8px;
  font-size: 1.2rem;
}
.card p{
  margin: 0 0 12px;
  color: var(--muted);
}
.small{font-size: 0.92rem;}

/* Footer */
.site-footer{
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
}
.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
  padding: 18px 0;
  flex-wrap:wrap;
}
.footer-inner .col{
  min-width: 220px;
}
.footer-inner p, .footer-inner a{
  color: rgba(31,41,55,0.82);
}
.footer-inner .muted{
  color: var(--muted);
}

/* Responsive tweaks */
@media (min-width: 860px){
  .card.split{grid-column: span 6;}
}

@media (max-width: 720px){
  .nav-desktop{ display:none; }
  .nav-hamburger{ display:flex; }
  .brand{ min-width:auto; }
  .brand .name span{ display:none; }
}
/* =========================
   SOCIAL ICON GRID (images only)
========================= */

.social-icons-grid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (min-width: 860px){
  .social-icons-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.social-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.social-icon img{
  width: 100%;
  max-width: 260px;  /* controls “decent size” */
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-icon:hover img{
  transform: translateY(-2px);
  box-shadow:
    0 0 0 2px rgba(201,164,90,0.25),
    0 0 16px rgba(201,164,90,0.35);
}
/* =========================
   CONTACT FORM FIX
========================= */

form{
  margin-top: 10px;
}

/* Label styling */
form label{
  display:block;
  font-weight:600;
  margin-bottom:6px;
  color: var(--text);
}

/* Inputs + textarea */
form input,
form textarea{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background: var(--surface);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  box-shadow: 0 6px 14px rgba(17,24,39,0.06);
  margin-bottom:12px;
}

/* Textarea sizing */
form textarea{
  min-height:110px;
  resize: vertical;
}

/* Focus state */
form input:focus,
form textarea:focus{
  outline:none;
  border-color: rgba(201,164,90,0.6);
  box-shadow:
    0 0 0 2px rgba(201,164,90,0.25),
    0 6px 14px rgba(17,24,39,0.08);
}

/* Submit button alignment */
form button{
  margin-top:4px;
}

/* Responsive spacing */
@media (max-width:720px){
  form input,
  form textarea{
    font-size: 1rem;
  }
}
