/* ===== THEME VARIABLES ===== */
:root {
  --bg-color: #ffffff;
  --text-color: #000000;
  --card-bg: #ffffff;
  --border-color: #ddd;
}

body.dark {
  --bg-color: #0f0f0f;
  --text-color: #eaeaea;
  --card-bg: #1a1a1a;
  --border-color: #333;
}





.page-header {
  text-align: center;
  margin: 40px 0 20px;
}

.page-header h1 {
  margin: 0;
  font-size: 32px;
  letter-spacing: 2px;
}

.page-header p {
  margin-top: 6px;
  color: var(--text-color);
  opacity: 0.7;
}






/* Base */
body {
  margin: 0;
  background: var(--bg-color);
  color: var(--text-color);
  font-family: "Montserrat", sans-serif;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Header */
header {
  text-align: center;
  margin: 40px 0;
}

/* Hamburger */
.hamburger {
  position: fixed;
  top: 15px;
  right: 15px;
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 18px;
  z-index: 1200;
}



/* Logout Button */
#logoutBtn {
  position: fixed;
  top: 55px;
  right: 10px;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  background: var(--card-bg);
  color: var(--text-color);
  cursor: pointer;
  z-index: 1000;
  transition: background 0.3s, color 0.3s, transform 0.3s, opacity 0.3s;
}


/* Dark Mode Toggle Full page */
#themeToggle {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 3000;
  background: var(--card-bg);
  color: var(--text-color);
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}

/* Sidebar */
#sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 75%;
  max-width: 320px;
  height: 100%;
  background: var(--card-bg);
  padding-top: 80px;
  transition: right 0.3s ease;
  z-index: 1300;
}

#sidebar a {
  display: block;
  color: #ccc;
  text-decoration: none;
  padding: 16px;
  text-align: center;
  font-size: 18px;
}

#sidebar a:hover {
  background: #111;
  color: #fff;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
}

/* Overlay */
#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 1250;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
  padding: 10px;
}

.gallery img {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}





/* =====================
   FOOTER STYLES (OFF)
   ===================== */

/*
.site-footer-old {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 30px 10px 20px;
  margin-top: 40px;
}
*/


/* New footer Colour */

.site-footer {
  background: var(--card-bg);
  color: var(--text-color);
  text-align: center;
  padding: 30px 10px 20px;
  margin-top: 40px;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Light mode */
.site-footer.light {
  background: #f2f2f2;
  color: #000;
}

.site-footer.light .footer-icons a {
  color: #000;
}

.site-footer.light .footer-text a {
  color: #333;
}

/* Toggle button */
#footerToggle {
  margin: 14px auto;
  padding: 6px 14px;
  border: none;
  border-radius: 20px;
  background: #444;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
}

.site-footer.light #footerToggle {
  background: #ddd;
  color: #000;
}

/* New footer ends here */



.footer-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

.footer-icons a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.footer-icons a:hover {
  opacity: 0.7;
}

.footer-text {
  font-size: 14px;
  margin: 0;
}

.footer-text a {
  color: #aaa;
  text-decoration: none;
}

.footer-text a:hover {
  text-decoration: underline;
}
