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

:root {
  --cyan: #00E5E5;
  --dark-bg: #0a0a14;
  --navy: #0d1021;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark-bg);
  color: white;
  overflow-x: hidden;
}

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--navy) 50%, #0a1628 100%);
  overflow: hidden;
}

.hero-border {
  position: absolute;
  inset: 48px;
  border: 1px solid var(--cyan);
  border-radius: 4px;
  pointer-events: none;
  z-index: 10;
  opacity: 0.6;
}

#terrain-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.logo {
  position: absolute;
  top: 100px;
  left: 120px;
  z-index: 20;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--cyan);
  text-shadow: 0 0 5px rgba(0, 229, 229, 0.4);
  letter-spacing: 0.05em;
}

.nav {
  position: absolute;
  top: 70px;
  right: 70px;
  z-index: 20;
}


.menu-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.menu-btn:hover {
  border-color: var(--cyan);
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: white;
  transition: background 0.3s ease;
}

.menu-btn:hover span {
  background: var(--cyan);
}

.hero-content {
  position: absolute;
  bottom: 25%;
  left: 120px;
  z-index: 20;
  max-width: 800px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.25rem);
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: rgb(102, 239, 239);
  text-transform: uppercase;
  max-width: 600px;
}


/* Floating particles overlay */
.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--cyan);
  opacity: 0.4;
  transform: rotate(45deg);
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: rotate(45deg) translateY(0px);
    opacity: 0.4;
  }
  50% {
    transform: rotate(45deg) translateY(-20px);
    opacity: 0.7;
  }
}

/* Logo link styling */
.logo a {
  color: inherit;
  text-decoration: none;
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 20, 0.98);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.menu-content a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: white;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.menu-content a:hover {
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0, 229, 229, 0.5);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 120px;
}

/* General Sections */
.section {
  padding: 150px 0;
  background: var(--dark-bg);
}

.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--cyan);
  letter-spacing: 0.25em;
  margin-bottom: 50px;
}

/* Philosophy Section */
.section-philosophy {
  background: linear-gradient(180deg, var(--navy) 0%, var(--dark-bg) 100%);
  text-align: center;
  padding: 200px 0;
}

.section-philosophy .container {
  max-width: 900px;
}

.philosophy-text {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.accent-line {
  width: 60px;
  height: 2px;
  background: var(--cyan);
  margin: 60px auto 0;
  box-shadow: 0 0 10px var(--cyan);
}

/* Focus Areas Section */
.section-focus {
  background: var(--dark-bg);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 50px 40px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.card:hover {
  border-color: rgba(0, 229, 229, 0.3);
  background: rgba(0, 229, 229, 0.03);
}

.card-icon {
  width: 50px;
  height: 50px;
  color: var(--cyan);
  margin-bottom: 30px;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  color: white;
}

.card-body {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

/* Image Dividers */
.image-divider {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.image-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-divider::before,
.image-divider::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 1;
  pointer-events: none;
}

.image-divider::before {
  top: 0;
  background: linear-gradient(to bottom, var(--dark-bg) 0%, transparent 100%);
}

.image-divider::after {
  bottom: 0;
  background: linear-gradient(to top, var(--dark-bg) 0%, transparent 100%);
}

/* Divider blending into navy section */
.image-divider.divider-to-navy::after {
  background: linear-gradient(to top, var(--navy) 0%, transparent 100%);
}

/* Divider coming from navy section */
.image-divider.divider-from-navy::before {
  background: linear-gradient(to bottom, var(--navy) 0%, transparent 100%);
}

/* Status Section */
.section-status {
  background: var(--navy);
  text-align: center;
  padding: 180px 0;
}

.status-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin-bottom: 20px;
}

.status-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Contact CTA Section */
.section-cta {
  background: var(--dark-bg);
  text-align: center;
  padding: 150px 0;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.cta-email {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: white;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.cta-email:hover {
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0, 229, 229, 0.5);
}

/* Footer */
.footer {
  background: #050508;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--cyan);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 15px;
}

.footer-contact a,
.footer-location p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

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

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Page Header (for inner pages) */
.page-header {
  padding: 180px 0 100px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--dark-bg) 100%);
}

.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.page-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Content Sections (for inner pages) */
.content-section {
  padding: 100px 0;
  background: var(--dark-bg);
}

.content-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--cyan);
  letter-spacing: 0.25em;
  margin-bottom: 30px;
}

.content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 25px;
  max-width: 700px;
}

/* Values Grid (for About page) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.value-item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  color: white;
}

.value-item p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

/* Contact Details (for Contact page) */
.contact-block {
  margin-bottom: 50px;
}

.contact-block h3 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}

.contact-block a,
.contact-block p {
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
}

.contact-block a:hover {
  color: var(--cyan);
}

/* Legal Pages (Impressum, Privacy) */
.legal-content {
  padding: 60px 0 120px;
  background: var(--dark-bg);
}

.legal-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--cyan);
  letter-spacing: 0.2em;
  margin: 50px 0 20px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.legal-content a {
  color: var(--cyan);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* Static Header for Inner Pages */
.static-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 30px 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 50;
  background: rgba(10, 10, 20, 0.9);
  backdrop-filter: blur(10px);
}

.static-header .logo {
  position: static;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--cyan);
  text-shadow: none;
}

.static-header .nav {
  position: static;
}

/* Responsive */
@media (max-width: 1024px) {
  .container {
    padding: 0 60px;
  }

  .cards-grid,
  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .hero-content {
    left: 60px;
    bottom: 20%;
  }

  .logo {
    left: 60px;
  }

  .static-header {
    padding: 20px 60px;
  }
}

/* Fade in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Menu button active state */
.menu-btn.active span:first-child {
  transform: rotate(45deg) translate(3px, 3px);
}

.menu-btn.active span:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

@media (max-width: 768px) {
  .container {
    padding: 0 30px;
  }

  .hero-content {
    left: 30px;
    right: 30px;
    max-width: none;
  }

  .logo {
    left: 30px;
    top: 80px;
  }

  .nav {
    right: 30px;
    top: 50px;
  }

  .hero-border {
    inset: 20px;
  }

  .section {
    padding: 100px 0;
  }

  .section-philosophy {
    padding: 120px 0;
  }

  .philosophy-text {
    font-size: 1.5rem;
  }

  .static-header {
    padding: 20px 30px;
  }

  .page-header {
    padding: 140px 0 60px;
  }

  .image-divider {
    height: 200px;
  }

  .image-divider::before,
  .image-divider::after {
    height: 50px;
  }
}

/* Honeybloom Links */
.hero-link {
  color: var(--cyan);
  text-decoration: none;
  transition: text-shadow 0.3s ease;
}

.hero-link:hover {
  text-shadow: 0 0 20px rgba(0, 229, 229, 0.6);
}

.menu-highlight {
  color: var(--cyan) !important;
  font-weight: 600;
}

.cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 40px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--dark-bg);
  background: var(--cyan);
  text-decoration: none;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 229, 229, 0.3);
}

.footer-products a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-products a:hover {
  color: var(--cyan);
}
