@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,800&family=Inter:wght@300;400;600;800&display=swap');

/* ------------------------------------
   DESIGN TOKENS
------------------------------------ */
:root {
  --bg-start: #0a0e27;
  --bg-end: #1a1f3a;
  --text: #e8e8e8;
  --text-muted: #a0a0a0;
  --accent: #ff6b35;
  --border: rgba(255, 255, 255, 0.08);
  --card-bg: rgba(255, 255, 255, 0.04);
}

/* ------------------------------------
   GLOBAL
------------------------------------ */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at 30% 20%, var(--bg-start), var(--bg-end));
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVQIW2P4//8/AwAI/AL+WcN6WQAAAABJRU5ErkJggg==');
  opacity: 0.12;
  pointer-events: none;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
}

/* ------------------------------------
   MENU
------------------------------------ */
.menu-container {
  position: fixed;
  top: 32px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  cursor: pointer;
}

.menu-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-container:hover .menu-icon {
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(255,255,255,0.25);
}

.menu-label {
  font-size: 0.95rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .menu-label { display: none; }
}

/* ------------------------------------
   SIDEBAR
------------------------------------ */
.sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 260px;
  height: 100vh;
  background: rgba(10, 14, 39, 0.92);
  backdrop-filter: blur(14px);
  border-left: 1px solid var(--border);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: right 0.35s ease;
  z-index: 999;
}

.sidebar.open {
  right: 0;
}

.sidebar-header {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.sidebar a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.sidebar a:hover {
  opacity: 1;
}

/* ------------------------------------
   HERO (Homepage)
------------------------------------ */
.hero {
  position: relative;
  height: 90vh;
  max-height: 900px;
  display: flex;
  align-items: center;
  padding: 0 8vw;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: 10%;
  top: 40%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
  filter: blur(80px);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.2));
  z-index: 0;
}

.hero-image {
  position: absolute;
  left: 5%;
  top: 50%;
  width: 40vw;
  max-width: 600px;
  transform: translateY(-50%);
  opacity: 0.9;
  filter: brightness(0.85);
  mask-image: radial-gradient(circle, black 60%, transparent 100%);
  animation: drift 18s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes drift {
  from { transform: translateY(-50%) translateX(0); }
  to   { transform: translateY(-52%) translateX(1.5%); }
}

.hero-text {
  position: relative;
  margin-left: 48%;
  z-index: 2;
  max-width: 520px;
}

.hero-text h1 {
  font-size: 3.4rem;
  font-weight: 800;
  margin: 0 0 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin: 0 0 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------
   SCROLL CUE
------------------------------------ */
.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  opacity: 0.5;
  animation: bounce 2s infinite;
  z-index: 3;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%       { transform: translate(-50%, -10px); }
}

/* ------------------------------------
   CTA Buttons
------------------------------------ */
.cta-row {
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.cta {
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
}

.cta-primary {
  background: var(--accent);
}

.cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(255,107,53,0.45);
}

.cta-secondary {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
}

.cta-secondary:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
}

/* ------------------------------------
   CREATIVE OUTLETS
------------------------------------ */
.outlets-section {
  padding: 120px 8vw;
  text-align: center;
}

.outlets-title {
  font-size: 2.4rem;
  margin-bottom: 60px;
  opacity: 0.9;
}

.outlets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.outlet-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  text-decoration: none;
  color: inherit;
  display: block;
}

.outlet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.outlet-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
}

.outlet-title {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.outlet-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ------------------------------------
   FOOTER
------------------------------------ */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 8vw 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  font-size: 0.95rem;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-image: url('images/image_5.png');
  background-size: cover;
  background-position: center;
}

.footer-brand-name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
}

.footer-brand-line {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

/* ------------------------------------
   ABOUT PAGE
------------------------------------ */
.page-hero {
  padding: 160px 20px 80px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1.3rem;
  opacity: 0.85;
  line-height: 1.6;
}

.banner {
  width: 100%;
  max-width: 1100px;
  margin: 80px auto 40px;
  display: block;
  object-fit: cover;
  height: 260px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0,0,0,0.35);
}

.section {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
  line-height: 1.7;
}

.tenets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.tenet {
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  font-size: 1rem;
  line-height: 1.4;
}

details {
  margin: 20px 0;
  padding: 18px 20px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
}

details summary {
  font-weight: 600;
  font-size: 1.2rem;
}

details p {
  margin-top: 12px;
  opacity: 0.85;
}

/* About page CTA section */
.cta-section {
  text-align: center;
  margin: 120px auto 80px;
  max-width: 800px;
  padding: 0 20px;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.pathways {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.pathway {
  padding: 20px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  transition: 0.2s ease;
}

.pathway:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}

.pathway a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

/* ------------------------------------
   RESPONSIVE
------------------------------------ */
@media (max-width: 1100px) {
  .hero {
    padding-top: 120px;
  }
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    height: auto;
    padding: 160px 20px 80px;
    text-align: center;
  }

  .hero-image {
    position: relative;
    left: 0;
    top: 0;
    width: 70vw;
    max-width: 360px;
    transform: none;
    margin-bottom: 40px;
    mask-image: none;
    opacity: 1;
  }

  .hero-text {
    margin-left: 0;
    max-width: 90%;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .cta-row {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .outlet-img {
    height: 140px;
  }

  .banner {
    height: 160px;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }
}

/* ------------------------------------
   FOOTER SOCIAL ICONS
------------------------------------ */
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-social a {
  color: var(--text-muted);
  transition: color 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
}

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