/* ==========================================================================
   Fozna Solutions BV - Main Stylesheet
   ========================================================================== */

:root {
  --bg-color: #060911;
  --text-primary: #ffffff;
  --text-secondary: #9aa8bc;
  --text-body: #d1d9e6;
  --accent-cyan: #00b4d8;
  --accent-cyan-hover: #38bdf8;
  --divider-color: rgba(255, 255, 255, 0.08);
  --footer-text: #6b7a90;
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-color);
}

body {
  font-family: var(--font-family);
  background: radial-gradient(circle 800px at 50% 220px, #101a2f 0%, #080c17 55%, var(--bg-color) 100%);
  background-attachment: fixed;
  color: var(--text-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 50px 20px;
}

/* Particles Canvas Background */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* Container */
.page-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 6px;
}

.logo-wrapper {
  position: relative;
  margin-bottom: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* Subtle ambient glow behind logo */
.logo-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.16) 0%, rgba(0, 180, 216, 0) 70%);
  z-index: 0;
  pointer-events: none;
  filter: blur(25px);
}

.logo-img {
  position: relative;
  z-index: 1;
  width: 170px;
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
}

/* Typography & Headers */
.brand-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  line-height: 1.15;
}

.subtitle {
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
  line-height: 1.5;
}

/* Horizontal Dividers */
.divider {
  width: 100%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--divider-color) 15%, var(--divider-color) 85%, transparent 100%);
  margin: 42px 0;
}

/* Content Sections */
.section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.section-description {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 480px;
  font-weight: 400;
}

.section-description + .section-description {
  margin-top: 14px;
}

.contact-desc {
  max-width: 100%;
}

.contact-email {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  transition: all 0.25s ease;
}

.contact-email:hover {
  color: var(--accent-cyan-hover);
  text-decoration-color: var(--accent-cyan-hover);
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.45);
}

/* Footer */
.footer {
  margin-top: 50px;
  color: var(--footer-text);
  font-size: 0.9rem;
  font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  body {
    padding: 36px 18px;
  }
  
  .brand-title {
    font-size: 2.1rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .logo-img {
    width: 140px;
  }
  
  .divider {
    margin: 32px 0;
  }
  
  .section-description {
    font-size: 0.98rem;
  }
  
  .footer {
    margin-top: 38px;
  }
}
