/* ============================================================
   ThemalefiK — Shared CSS
   All pages (except index.html) use this stylesheet
   ============================================================ */

/* RESET */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIABLES */
:root {
  --gold: #b0d4d9;
  --dark: #0a0a0a;
  --darker: #050505;
  --text: #e0e0e0;
  --muted: #888;
  --accent: #c0392b;
  --header-h: 90px;
}

/* BASE */
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  letter-spacing: 2px;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(176,212,217,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: var(--header-h);
}

/* LOGO ICON centred */
.header-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.header-icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(176,212,217,0.3);
  object-fit: cover;
  transition: border-color 0.3s;
}

.header-icon:hover img { border-color: var(--gold); }

.header-icon span {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}

/* DESKTOP NAV */
.desktop-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

.desktop-nav ul li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ccc;
  transition: color 0.3s;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.desktop-nav ul li a:hover,
.desktop-nav ul li a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* HEADER RIGHT — language selector */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* LANGUAGE SELECTOR */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn {
  background: none;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  padding: 3px 5px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 1px;
  color: #aaa;
  transition: all 0.25s;
}

.lang-btn img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--gold);
  border-color: rgba(176,212,217,0.4);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV OVERLAY */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.mobile-nav-inner img.mobile-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 1px solid rgba(176,212,217,0.4);
}

.mobile-nav ul {
  list-style: none;
  text-align: center;
}

.mobile-nav ul li {
  margin: 14px 0;
}

.mobile-nav ul li a {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
  transition: color 0.3s;
}

.mobile-nav ul li a:hover { color: var(--gold); }

.mobile-lang {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.mobile-lang .lang-btn {
  font-size: 0.8rem;
  color: #ccc;
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.page-wrapper {
  padding-top: var(--header-h);
  min-height: 100vh;
}

/* ============================================================
   HERO BANNER (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 40px;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.95) 100%),
              url('images/icon.png') center/cover no-repeat;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(176,212,217,0.05) 0%, transparent 70%);
}

.page-hero-content {
  position: relative;
  text-align: center;
}

.page-hero-content .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.page-hero-content h1 {
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 0 40px rgba(176,212,217,0.2);
}

/* ============================================================
   SECTION STYLES
   ============================================================ */
.section {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 14px auto 0;
  opacity: 0.5;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176,212,217,0.3), transparent);
  margin: 0 auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  border: 1px solid var(--gold);
  padding: 12px 28px;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  transition: background 0.3s, color 0.3s;
}

.btn:hover {
  background: var(--gold);
  color: #000;
}

.btn-solid {
  background: var(--gold);
  color: #000;
}

.btn-solid:hover {
  background: #fff;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--darker);
  border-top: 1px solid rgba(176,212,217,0.1);
  padding: 60px 40px 30px;
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  opacity: 0.8;
}

.footer-logo span {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 6px;
  color: var(--gold);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  transition: color 0.3s;
}

.footer-nav a:hover { color: var(--gold); }

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-links a {
  color: #888;
  font-size: 1.3rem;
  transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-copy {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: #444;
  text-transform: uppercase;
}

.footer-copy a {
  color: #666;
  transition: color 0.3s;
}

.footer-copy a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .site-header {
    padding: 0 20px;
  }

  .header-icon img { width: 50px; height: 50px; }
}

@media (max-width: 600px) {
  .page-hero-content h1 { font-size: 2rem; }
  .section { padding: 60px 20px; }
  .section-title { font-size: 1.4rem; }
}
