/* styles.css - simple warm yellow & black theme */
:root{
  --yellow-1: #fff44d;
  --yellow-2: #fff;
  --accent: #f4c430;
  --black: #111;
}
*{box-sizing:border-box}
body{margin:0;font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; background: linear-gradient(to bottom, var(--yellow-1), var(--yellow-2)); color:var(--black)}
nav{position:fixed;top:0;left:0;right:0;display:flex;justify-content:space-between;align-items:center;padding:12px 28px;background:rgba(255,244,77,0.95);backdrop-filter:blur(6px);box-shadow:0 2px 8px rgba(0,0,0,0.08);z-index:100}
.nav-left{display:flex;align-items:center;gap:12px}
.logo-placeholder,.footer-logo{height:75px;overflow:hidden;} /*width:56px;background:var(--accent);border-radius:8px;display:flex;align-items:center;justify-content:center;font-weight:700;color:#000}*/
.logo-placeholder img,.footer-logo img{height:100%; width: auto;}
nav h1{font-size:20px;margin:0;color:var(--black)}
nav a{margin-left:18px;text-decoration:none;color:var(--black);font-weight:600}
.hero{background:#fff;padding:180px 20px 120px;margin-top:72px;position:relative;color:#fff}
.hero::after{content:'';position:absolute;inset:0;background:rgba(255,255,255,1)}
.hero-content{position:relative;z-index:1;max-width:820px;margin:0 auto;text-align:center}
.hero h1{font-size:44px;line-height:1.15;margin:0; color:#000;}
.hero h1 span{color:var(--accent)}
.hero p{color:#333;font-size:18px;margin-top:16px}
.cta{display:inline-block;margin-top:18px;padding:12px 20px;background:var(--black);color:#fff;border-radius:10px;text-decoration:none;font-weight:700}
.container{padding:72px 20px;text-align:center;max-width:1100px;margin:0 auto}
section#programs, section#testimonials, section#clients{max-width:unset;}
section#programs .grid, section#testimonials .grid, section#clients .grid{max-width:1100px;margin: 0 auto;}
.light{background:rgba(255,255,255,0.8);border-top:1px solid rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.03)}
h2{font-size:30px;margin-bottom:14px;color:var(--black)}
p{font-size:16px;color:#333;line-height:1.6;margin:0;}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px;margin-top:20px}
.card{background:#fff;border-radius:12px;padding:18px 24px;box-shadow:0 6px 18px rgba(0,0,0,0.06);text-align:center;}
.card .img{font-size:36px;display:block;text-align:center;}
.card h3{margin-top:0}

.membership{font-weight:700;margin-top:0px}
button.btn{background: #000;border: 1px solid #000;border-radius: 6px;color: #fff;padding: 5px 20px 8px 20px;font-size: 15px; font-weight: 600; margin: 20px 0px;}
button.btn:hover{background: #fff;border: 1px solid #000;color: #000;}
a, button{cursor: pointer;}
footer{padding:40px 20px;text-align:center;background-color:var(--yellow-1);color:#000}
footer p{margin:6px 0}

section#clients img{width:150px;height: auto;object-fit:contain;margin:0 10px;border: 1px solid #eee; padding: 10px;border-radius:10px;}

@media(max-width:768px){.hero{padding:120px 20px 90px}.hero h1{font-size:32px}.nav-links{display:none}}


/* ===== Gallery Styles ===== */
.gallery-grid {display: grid; grid-template-columns: repeat(auto-fit, minmax(30%, 1fr)); gap: 16px; margin-top: 20px;}
.gallery-grid > div{height: 260px; overflow: hidden;border-radius: 10px;display:inline-flex;}
.gallery-grid img {width: 100%; cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; object-fit: cover; height: 100%;}
.gallery-grid img:hover { /*transform: scale(1.05);*/ box-shadow: 0 8px 20px rgba(0,0,0,0.2);}
.rotateleft{transform: rotate(-90deg) scale(1.4);}
.rotateright{transform:rotate(90deg);}



/* ===== Lightbox ===== */
#lightbox { display: none; position: fixed; z-index: 200; padding-top: 60px; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background: rgba(0,0,0,0.9);}
#lightbox img { margin: auto; display: block; max-width: 90%; max-height: 80%; border-radius: 8px;}
#lightbox .close {position: absolute; top: 20px; right: 40px; color: #fff; font-size: 40px; font-weight: bold; cursor: pointer; transition: 0.3s;}
#lightbox .close:hover {color: var(--accent);}

