/* =============================================
   OKIMAWAKE — Global Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400&family=Montserrat:wght@200;300;400&display=swap');

:root {
  --black:   #000000;
  --grey-dark: #1a1a1a;
  --grey-mid:  #2a2a2a;
  --grey-light: #888888;
  --white:   #ffffff;
  --red:     #cc2200;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;
  --header-height: 200px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
a:hover { opacity: 0.6; }

/* ─── HEADER ─────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 0 18px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.95) 60%, transparent);
}

/* SVG Logo */
.logo-svg {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}

.logo-title {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.85rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.25s forwards;
}

nav {
  margin-top: 14px;
  display: flex;
  gap: 36px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

nav a {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color 0.2s ease;
  padding-bottom: 3px;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width 0.25s ease;
}

nav a:hover,
nav a.active {
  color: var(--white);
  opacity: 1;
}
nav a:hover::after,
nav a.active::after { width: 100%; }

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid #222;
  text-align: center;
  padding: 20px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #444;
  text-transform: uppercase;
}

/* ─── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
