/*
Theme Name:  Floris Music
Theme URI:   https://florismusic.com
Author:      Floris van Pallandt
Author URI:  https://florismusic.com
Description: Official website theme for Floris van Pallandt — dark, minimal, with pink-to-cyan brand gradient.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: floris-music
Tags:        music, dark, minimal, one-column
*/

/* ============================================
   FLORIS MUSIC — Design Tokens
   ============================================ */

:root {
  --color-bg:       #000000;
  --color-surface:  #0a0a0a;
  --color-border:   rgba(255, 255, 255, 0.07);
  --color-text:     #ffffff;
  --color-muted:    rgba(255, 255, 255, 0.35);
  --color-pink:     #ff6eb4;
  --color-cyan:     #00e5ff;
  --gradient:       linear-gradient(135deg, #ff6eb4 0%, #00e5ff 100%);

  --font-sans:      'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --max-width:      1200px;
  --radius:         6px;
  --ease:           cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   Reset & Base
   ============================================ */

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

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

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 9999;
}

/* ============================================
   Layout
   ============================================ */

.site { display: flex; flex-direction: column; min-height: 100vh; }
.site-content { flex: 1; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ============================================
   Header / Nav — blank shell
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img { width: 160px; }

.site-nav { /* populated later */ }

/* ============================================
   Footer — blank shell
   ============================================ */

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ============================================
   Coming Soon — front page
   ============================================ */

.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.coming-soon__orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.14;
  pointer-events: none;
}

.coming-soon__orb--pink {
  width: 640px; height: 640px;
  background: var(--color-pink);
  top: -180px; left: -120px;
  animation: drift 24s ease-in-out infinite alternate;
}

.coming-soon__orb--cyan {
  width: 520px; height: 520px;
  background: var(--color-cyan);
  bottom: -120px; right: -80px;
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(32px, 24px); }
}

.coming-soon__inner {
  position: relative;
  z-index: 10;
  animation: fadeUp 1.4s var(--ease) both;
}

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

.coming-soon__logo {
  width: 80vw;
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .coming-soon__logo {
    width: 40vw;
  }
}

.coming-soon__label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(0.75rem, 1.6vw, 0.95rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================
   Utilities
   ============================================ */

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
