/* Base styles */
@font-face {
  font-family: "Tungsten";
  src: url("./assets/Tungsten-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

html, body {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

p {
  padding-bottom: 16px;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #283C39 0%, #003A41 100%);
  color: #ffffff;
}

main {
  width: 100%;
  overflow-x: hidden;
}

/* Layout */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 64px 24px;
  width: 100%;
  max-width: 100vw;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100lvh;
  min-height: 100dvh;
  background: radial-gradient(1200px 500px at 50% -10%, rgba(88, 137, 120, 0.20), rgba(88, 137, 120, 0) 60%),
              radial-gradient(900px 360px at 80% 0%, rgba(0, 58, 65, 0.22), rgba(0, 58, 65, 0) 60%),
              radial-gradient(800px 320px at 20% 10%, rgba(243, 211, 107, 0.10), rgba(243, 211, 107, 0) 60%);
}

.logo {
  width: clamp(200px, 42vw, 620px);
  max-width: 90vw;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
  position: relative;
  z-index: 2;
}

.tagline {
  margin: 0;
  font-family: "Tungsten", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.8vw, 28px);
  letter-spacing: 0.2px;
  opacity: 0.95;
  position: relative;
  z-index: 2;
}

.coming-soon {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.8vw, 18px);
  letter-spacing: 0.2px;
  opacity: 0.85;
}


/* Sections */
.section {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 24px;
  line-height: 1.6;
  position: relative;
  z-index: 0;
}

.section h2 {
  margin: 0 0 12px;
  font-weight: 600;
  font-size: clamp(22px, 3.4vw, 32px);
}

.section p {
  margin: 0;
  opacity: 0.95;
  font-size: clamp(16px, 1.6vw, 20px);
}

/* About section: shorter and vertically centered */
.about {
  min-height: 50svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* Full-bleed background for sections */
.section::before { content: none; }

/* Section dividers */
.section + .section {
  border-top: 1px solid rgba(250, 250, 250, 0.08);
}

/* Buttons (kept for future use, minimal styling) */
.cta-button { display: inline-block; padding: 10px 14px; border-radius: 8px; text-decoration: none; font-weight: 600; }

/* Links */
a {
  color: #F3D36B;
  text-decoration: none;
  border-bottom: 1px solid rgba(243, 211, 107, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: #F8E2BD;
  border-bottom-color: rgba(248, 226, 189, 0.7);
}

/* Contact form styles removed per request */

/* Particle Animation */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(0.5px);
  box-shadow: 
    0 0 6px currentColor,
    0 0 12px currentColor,
    0 0 18px currentColor,
    0 0 24px currentColor;
  animation: particle-travel var(--duration, 3s) linear forwards;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
}

@keyframes particle-travel {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 0.9;
  }
  100% {
    transform: translate3d(var(--translate-x), var(--translate-y), 0);
    opacity: 0;
  }
}

/* Hide Scrollbar - Chromium browsers (Chrome, Edge) */
::-webkit-scrollbar {
  display: none;
}

/* Hide Scrollbar - Firefox */
* {
  scrollbar-width: none;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(250, 250, 250, 0.10);
  padding: 20px 24px;
  text-align: center;
  opacity: 0.9;
  background: linear-gradient(180deg, rgba(0, 58, 65, 0.35), rgba(40, 60, 57, 0.45));
}

