@import url("https://fonts.googleapis.com/css2?family=Henny+Penny&display=swap");

:root{
  --brand-font: "Henny Penny", system-ui, sans-serif;
  --bg: #ffffff;
  --card: #777777;
  --text: #252525;
  --muted: #5e5e5e;
  --accent: #9e0c0c; /* red for & */
  --line: rgba(255,255,255,0.10);
  --shadow: 0 12px 28px rgba(0,0,0,0.35);
  --radius: 18px;

  --header-h: 62px;
  --maxw: 1100px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  background: radial-gradient(1200px 600px at 20% 0%, #ffffff 0%, var(--bg) 55%);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.4;
}

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

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

/* ===== Sticky Header ===== */
.header{
  position: sticky;
  top: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

/* Booking & Pricing button text color */
.header .btn.primary{
  color: #ffffff !important; /* change this */
  background: rgb(0, 0, 0);
  border-color: rgb(255, 255, 255);
  color: #ffffff;          /* 👈 ADD THIS */
  opacity: 1;       
}


.header-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand-mini{
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #444;
}
.brand-mini img{
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0);
  border: 1px solid var(--line);
}

.brand-mini .name{
  font-family: var(--brand-font);
  font-weight: 400;
  letter-spacing: 0.2px;
  font-size: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}
.brand-mini .name .amp{ color: var(--accent); }
.brand-mini .name .dotco{ opacity: 0.95; }

.header-actions{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgb(255, 255, 255);
  color: var(--text);
  font-weight: 650;
  font-size: 13px;
  letter-spacing: 0.2px;
  box-shadow: none;
  transition: transform 0.08s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn.primary{
  background: rgb(0, 0, 0);
  border-color: rgb(255, 255, 255);
  color: #ffffff;     /* ✅ THIS is the missing part */
  opacity: 1;
}

.btn:hover{ background: rgba(255,255,255,0.09); }
.btn.primary:hover{ background: rgba(255,59,59,0.24); }



.icon-btn{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
}
.icon-btn:active{ transform: translateY(1px); }

.burger{
  width: 18px;
  height: 14px;
  position: relative;
}
.burger span{
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
  opacity: 0.92;
}
.burger span:nth-child(1){ top: 0; }
.burger span:nth-child(2){ top: 6px; }
.burger span:nth-child(3){ top: 12px; }

/* ===== Mobile Drawer Menu ===== */
.drawer-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.drawer{
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(88vw, 360px);
  background: rgba(255, 255, 255, 0.96);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
  z-index: 90;
  transform: translateX(105%);
  transition: transform 0.22s ease;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.menu-open .drawer{ transform: translateX(0); }
body.menu-open .drawer-backdrop{
  opacity: 1;
  pointer-events: auto;
}

.drawer-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.drawer-title{
  font-weight: 800;
  letter-spacing: 0.3px;
}
.drawer-close{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgb(255, 255, 255);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.navlist{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}
.navitem{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgb(255, 255, 255);
}
.navitem small{ color: var(--muted); font-weight: 600; }
.navitem:hover{ background: rgba(255,255,255,0.07); }

/* ===== Page sections ===== */
main{ padding-bottom: 54px; }

.page-hero{
  padding: 24px 0 10px;
}
.page-title{
  font-size: 22px;
  margin: 0 0 6px 0;
}
.page-subtitle{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Big title logo color */
.title-logo{
  color: #464646; /* change this */
}


/* ===== Home Title Wallpaper Area ===== */
.title-hero{
  position: relative;
  z-index: 1;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  place-items: center;
  padding: 24px 0;
  overflow: hidden;

  /* wallpaper only behind logo area */
  background-image: url("images/wallpaper.jpg");
  background-size: cover;
  background-position: center;
}
.title-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.493) 0%,
    rgba(255, 255, 255, 0.767) 55%,
    rgba(255, 255, 255, 0.384) 100%
  );
}



.title-card{
  position: relative;
  width: min(560px, calc(100% - 24px));
  text-align: center;
}

.title-logo{
  font-family: var(--brand-font);
  margin: 0;
  font-weight: 400;

  line-height: 0.95;
  letter-spacing: 0.3px;
  font-size: clamp(54px, 12vw, 92px);
}
.title-logo .amp{ color: var(--accent); }
.title-logo .dotco{ opacity: 0.98; }

.title-hint{
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}

/* ===== Gallery Grid ===== */
.section{
  padding: 22px 0 8px;
}
.section h2{
  margin: 0 0 10px 0;
  font-size: 18px;
  letter-spacing: 0.2px;
}
.section p{
  margin: 0 0 14px 0;
  color: var(--muted);
  font-size: 14px;
}

.grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* No grey box */
.card{
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  overflow: hidden;         /* keeps corners clean */
  border-radius: 18px;      /* rounded square/rectangle */
}

/* Rounded image */
.card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;      /* SAME radius as .card */
  cursor: zoom-in;
}


.card .cap{
  padding: 10px 10px 12px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 650;
}

/* ===== Social list ===== */
.social-list{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.social-item{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgb(255, 255, 255);
}
.social-item img{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: contain;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  padding: 6px;
}
.social-item .meta{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.social-item .meta b{ font-size: 14px; }
.social-item .meta small{ color: var(--muted); font-weight: 650; }

/* ===== Footer ===== */
.footer{
  margin-top: 24px;
  padding: 18px 0 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

/* ===== Larger screens (still mobile-first) ===== */
@media (min-width: 760px){
  .grid{ grid-template-columns: repeat(3, 1fr); }
  .brand-mini .name{ max-width: 240px; font-size: 30px; }
}

/* Oval background for “View full sample library” */
.btn.sample-pill{
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.08);
}
.btn.sample-pill:hover{
  background: rgba(0,0,0,0.10);
}

/* Darker note text in the Hours & Location block */
.info-note{
  color: #444343 !important;
  opacity: 1 !important;
  filter: none !important;
}


/* ===== Home: Hours & Location block ===== */
.info-block{
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 14px;
  background: rgba(255,255,255,.75);
}
.info-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 10px;
}
@media (min-width: 720px){
  .info-grid{ grid-template-columns: 1fr 1fr; }
}

.info-title{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.info-icon{
  width: 30px;
  height: 30px;
  object-fit: contain;
  opacity: 0.9;
}

.hours-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.hours-table td{
  padding: 8px 6px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  vertical-align: top;
}
.hours-table tr:last-child td{ border-bottom: none; }


/* ===== Pricing page ===== */
.price-hero-actions{
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.price-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 760px){
  .price-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1020px){
  .price-grid{ grid-template-columns: repeat(3, 1fr); }
}

.price-card{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.85);
  padding: 14px;
}

.price-card h3{
  margin: 0;
  font-size: 16px;
}

.price-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.price-meta{
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
}

.price-tag{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.08);
  font-weight: 750;
  font-size: 12px;
  white-space: nowrap;
}

.price-tag.muted{
  font-weight: 700;
  color: var(--muted);
}

.price-card ul{
  margin: 10px 0 10px 18px;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
}

.price-note{
  margin: 0 0 12px 0;
  color: var(--muted);
  font-size: 14px;
}

.price-small{
  margin: 0 0 10px 0;
  color: var(--muted);
  font-size: 13px;
}

.price-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.price-hr{
  border: 0;
  border-top: 1px solid rgba(0,0,0,.10);
  margin: 12px 0;
}

.price-split{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,.08);
}

@media (min-width: 760px){
  .price-split{ grid-template-columns: 1fr 1fr; }
}

.price-split .mini{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 10px;
  background: rgba(255,255,255,.65);
}

.soon{
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.price-card.placeholder{
  border-style: dashed;
  opacity: 0.85;
}

/* ===== Tabs (Gallery + Admin) ===== */
.tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.tab{
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.9);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.tab.active{
  background: rgba(0,0,0,0.88);
  color: #fff;
  border-color: rgba(0,0,0,0.88);
}

/* Empty category message */
.empty-note{
  padding: 18px;
  border-radius: 14px;
  border: 1px dashed rgba(0,0,0,0.18);
  color: rgba(0,0,0,0.65);
}

/* ===== Admin Organizer ===== */
.page-subtitle{
  margin: 10px 0 0;
  color: rgba(0,0,0,0.66);
}

.admin-toolbar{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.admin-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-status{
  margin: 10px 0 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  font-weight: 650;
}

.admin-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 920px){
  .admin-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .admin-grid{ grid-template-columns: repeat(1, minmax(0, 1fr)); }
}

.admin-item{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  cursor: grab;
}
.admin-item.dragging{ opacity: 0.55; }
.admin-item.drag-over{ outline: 3px solid rgba(0,0,0,0.20); }

.admin-item img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.admin-meta{
  padding: 10px 10px 12px;
  display: grid;
  gap: 10px;
}

.admin-label{
  font-weight: 800;
  font-size: 12px;
  color: rgba(0,0,0,0.70);
  word-break: break-word;
}

.admin-row{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.admin-select{
  flex: 1;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.14);
  background: rgba(255,255,255,1);
  font-weight: 700;
  font-size: 13px;
}

.admin-hide{
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.14);
  background: rgba(255,255,255,1);
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.admin-item.is-hidden{
  opacity: 0.6;
}
.admin-help{
  margin-top: 18px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.7);
}
.admin-help h2{
  margin: 0 0 10px;
  font-size: 16px;
}
.admin-help ul{
  margin: 0;
  padding-left: 18px;
}


/* Organizer file input (hidden) */
.admin-file{ display:none; }

/* Organizer move buttons (mobile-friendly) */
.admin-move-up, .admin-move-down{
  width: 40px;
  padding: 9px 0;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.14);
  background: rgba(255,255,255,1);
  font-weight: 900;
  cursor: pointer;
}

/* ===== Lightbox (gallery popup) ===== */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.lightbox.is-open{ display: block; }

.lightbox-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
}

.lightbox-dialog{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 980px);
  max-height: 88vh;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
}

.lightbox-img{
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  height: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(0,0,0,0.18);
}

.lightbox-close{
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  font-weight: 900;
  cursor: pointer;
}

.lightbox-nav{
  align-self: center;
  width: 44px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav.prev{ grid-column: 1; grid-row: 2; }
.lightbox-nav.next{ grid-column: 3; grid-row: 2; }

.lightbox-caption{
  grid-column: 1 / -1;
  grid-row: 3;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 4px 8px 2px;
}

@media (max-width: 520px){
  .lightbox-dialog{
    grid-template-columns: 38px 1fr 38px;
    width: min(96vw, 980px);
    padding: 10px;
  }
  .lightbox-nav{ height: 50px; font-size: 28px; }
}
