:root{
  --bg:#e8f2ff;
  --bg2:#d9eaff;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --brand:#2563eb;
  --brand2:#0ea5e9;
  --danger:#dc2626;
  --border:rgba(15,23,42,.12);
  --shadow:0 10px 28px rgba(15,23,42,.10);
}

*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  background:linear-gradient(180deg,var(--bg) 0%, var(--bg2) 60%, var(--bg) 100%);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:0 18px}

/* HEADER */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  gap:14px;
}
.brand{display:flex;align-items:center;gap:12px}
.brand img{
  height:44px;
  width:auto;
  border-radius:10px;
  box-shadow:0 6px 16px rgba(15,23,42,.10);
}
.nav{display:flex;gap:14px;flex-wrap:wrap;justify-content:flex-end}
.nav a{
  padding:8px 10px;
  border-radius:10px;
  color:var(--muted);
}
.nav a:hover{
  background:rgba(37,99,235,.08);
  color:var(--text);
}

/* HERO */
.hero{padding:26px 0 0;}
.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}

.hero-grid .card:first-child { background:#f1eded; }
#about .card { background:#edeee4; }

.card{
  background:rgba(255,255,255,.88);
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.card-pad{padding:18px}
.h1{font-size:42px;line-height:1.08;margin:0 0 10px}
.lead{margin:0 0 14px;color:var(--muted);font-size:16px;line-height:1.5}
.pills{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}
.pill{
  border:1px solid var(--border);
  color:var(--muted);
  padding:6px 10px;
  border-radius:999px;
  font-size:13px;
  background:#fae5e5;
}

/* SLIDER FIXES */
.hero-grid .card:nth-child(2){
  display:flex;
  align-items:stretch;
  background:#f50606;
}

.card .slider{
  aspect-ratio:16/9;
  width:100%;
  overflow:hidden;
  border-radius:18px;
  position:relative;
}

.slider{
  position:relative;
  overflow:hidden;
  width:100%;
  height:100%;
}

.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .6s ease;
}

.slide.active{opacity:1}

.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

.slide-caption{
  position:absolute;
  left:14px;
  bottom:14px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(15,23,42,.12);
  padding:10px 12px;
  border-radius:14px;
  font-size:13px;
  color:var(--text);
  max-width:75%;
}

/* SECTIONS */
.section{padding:26px 0}
.section h2{margin:0 0 12px;font-size:26px}
.section p{margin:0;color:var(--muted);line-height:1.6}

/* EXEC GRID */
.grid{display:grid;gap:14px}

.grid.exec{
  display:grid;
  grid-template-columns:repeat(4,minmax(150px,1fr));
  gap:14px;
  overflow-x:auto;
  padding-bottom:10px;
}

.exec-card{
  min-width:150px;
  display:flex;
  flex-direction:column;
  text-align:center;
}

.exec-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

.exec-card .meta{padding:12px 14px}
.exec-card .name{margin:0;font-weight:800}
.exec-card .role{margin:4px 0 0;color:var(--muted)}

/* CALENDAR */
.cal-wrap{
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:14px;
}

.calendar{
  padding:14px;
  background:#f2f7f3;
  border:2px solid #c9d8fa;
}

.upcoming{
  padding:14px;
  background:#f2f7f3;
  border:2px solid #c9d8fa;
}

.cal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
  gap:10px;
}
.cal-head button{
  background:transparent;
  border:1px solid var(--border);
  color:var(--text);
  padding:8px 10px;
  border-radius:12px;
  cursor:pointer;
}
.cal-head button:hover{background:rgba(37,99,235,.08)}
.cal-title{font-weight:800}
.cal-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:6px;
}
.cal-dow{
  font-size:12px;
  color:var(--muted);
  text-align:center;
  padding:6px 0;
}
.day{
  border:1px solid var(--border);
  border-radius:12px;
  min-height:70px;
  padding:8px;
  position:relative;
  background:rgba(255,255,255,.9);
}
.day.muted{opacity:.55}
.day .num{font-size:12px;color:var(--muted)}
.badge{
  position:absolute;
  right:7px;
  top:7px;
  background:var(--brand);
  color:#fff;
  font-size:11px;
  padding:3px 7px;
  border-radius:999px;
}
.day:hover{outline:2px solid rgba(37,99,235,.25)}

/* UPCOMING */
.upcoming .row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:10px 0;
  border-bottom:1px dashed rgba(15,23,42,.18);
}
.upcoming .row:last-child{border-bottom:none}
.small{color:var(--muted);font-size:13px}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:none;
  background:var(--brand);
  color:#fff;
  padding:10px 12px;
  border-radius:12px;
  cursor:pointer;
  font-weight:700;
}
.btn.secondary{
  background:transparent;
  border:1px solid var(--border);
  color:var(--text);
}
.btn.danger{background:var(--danger)}
.btn:hover{filter:brightness(1.02)}

/* INPUTS */
input,select,textarea{
  width:100%;
  background:rgba(255,255,255,.95);
  border:1px solid var(--border);
  border-radius:12px;
  color:var(--text);
  padding:10px 12px;
  outline:none;
}
label{
  display:block;
  margin:10px 0 6px;
  color:var(--muted);
  font-size:13px;
}

/* RESPONSIVE */
@media(max-width:920px){
  .hero-grid{grid-template-columns:1fr}
  .cal-wrap{grid-template-columns:1fr}
}

@media(max-width:820px){
  .header-inner{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }
  .brand img{height:40px;}
  .nav{
    width:100%;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    justify-content:flex-start;
  }
  .nav a{
    padding:8px 12px;
    background:rgba(255,255,255,0.7);
    border:1px solid var(--border);
    border-radius:10px;
    font-size:14px;
    white-space:nowrap;
  }
}

@media(max-width:520px){
  .nav{justify-content:center;}
  .nav a{
    flex:1 1 calc(50% - 10px);
    text-align:center;
  }
}

/* ALBUM CARDS — FINAL FIX */
.album-card{
  width:200px;
  height:150px;

  /* remove all backgrounds */
  background:transparent !important;
  background-color:transparent !important;

  /* use your real folder icon */
  background-image:url('../assets/folder/folder.png') !important;
  background-size:contain !important;
  background-position:center !important;
  background-repeat:no-repeat !important;

  /* remove old styling */
  padding:0 !important;
  border:none !important;
  border-radius:0 !important;
  box-shadow:none !important;

  /* center text */
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;

  cursor:pointer;
  position:relative;
}

.album-title{
  font-family:'Poppins',sans-serif;
  font-size:16px !important;
  font-weight:600 !important;
  color:#5a3e00 !important;
  line-height:1.2;
  z-index:2;
  padding:0 10px;
}

/* LIGHTBOX */
.lightbox{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.92);
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.lightbox-inner{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
}

.lightbox-inner img{
  max-width:70%;
  max-height:80vh;
  border-radius:10px;
  display:block;
  margin:0 auto;
}

.lightbox .close{
  position:absolute;
  top:20px;
  right:25px;
  font-size:40px;
  color:white;
  cursor:pointer;
  z-index:10001;
}

.lightbox .nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:55px;
  color:white;
  cursor:pointer;
  user-select:none;
  z-index:10001;
  padding:10px;
}

.lightbox .nav.left{left:10px;}
.lightbox .nav.right{right:10px;}

@media(max-width:600px){
  .lightbox-inner img{
    max-width:65%;
    max-height:70vh;
  }
  .lightbox .nav{
    font-size:42px;
    padding:8px;
  }
}

.zoomable{
  transition:transform .3s ease;
}
.zoomable:hover{
  transform:scale(1.05);
}
