@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #c7c0b9;
  --secondary: #fff;
  --accent: #333;
  --bg: #f8f8f6;
  --text: #222;
  --highlight: #e6e0d7;
}

@font-face { 
  font-family: 'Choco'; 
  src: url('font/Choco-Zp7X3.ttf') format('truetype');
  font-weight: normal; 
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* Header + Nav */
.top-bar {
  background: #000000;
  text-align: center;
  color: white;
  padding: 0.5rem 0;
  font-weight: 500;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: var(--secondary);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.site-title {
  font-family: 'Choco', sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text);
  letter-spacing: 1px;
}

.nav-links a {
  text-decoration: none;
  color: var(--accent);
  margin: 0 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hero Section */
.about-hero {
  height: 90vh;
  background: url('images/about-hero.jpg') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  max-width: 700px;
  z-index: 2;
  animation: fadeIn 1.5s ease forwards;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Mission Section */
.mission {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
  padding: 5rem 2rem;
  background: var(--secondary);
}

.mission.visible {
  opacity: 1;
  transform: translateY(0);
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mission h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.mission p {
  line-height: 1.8;
  color: #444;
}



/* --- Reel Showcase --- */
.reel-showcase {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
  text-align: center;
  padding: 5rem 2rem;
  background: var(--secondary);
}

.reel-showcase.visible {
  opacity: 1;
  transform: translateY(0);
}

.reel-showcase h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.reel-showcase p {
  color: #555;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.reel-container {
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.reel-frame {
  width: 300px;
  height: 530px;
  border-radius: 30px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.reel-frame:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.reel-frame::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  border-radius: 10px;
  background: rgba(255,255,255,0.5);
  z-index: 2;
}

.reel-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .reel-container {
    gap: 1.2rem;
  }

  .reel-frame {
    width: 160px;
    height: 340px;
  }
}



/* Values */
.values {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
  text-align: center;
  padding: 5rem 2rem;
}

.values.visible {
  opacity: 1;
  transform: translateY(0);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* Scroll Reveal Section */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
  padding: 5rem 2rem;
  text-align: center;
  background: var(--highlight);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.scroll-reveal p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Footer */
footer {
  background: var(--accent);
  color: white;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  header {
    flex-direction: column;
  }
}
