/* ============================================================
   ANTHURIUM SUITE — Shared Stylesheet
   Colors: Pink #FF66C4, Electric Teal #5CE1E6,
           Navy Sea #141C40, Globe Blue #C0DBFE, White #FFFFFF
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ── Custom Properties ────────────────────────────────── */
:root {
  --pink: #FF66C4;
  --teal: #5CE1E6;
  --navy: #141C40;
  --globe: #C0DBFE;
  --white: #FFFFFF;

  --pink-glow: rgba(255, 102, 196, .35);
  --teal-glow: rgba(92, 225, 230, .35);
  --navy-light: #1e2a54;
  --navy-dark: #0d1229;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .12);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, .18);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .25);
  --shadow-glow-pink: 0 0 30px var(--pink-glow);
  --shadow-glow-teal: 0 0 30px var(--teal-glow);

  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  --transition: .25s cubic-bezier(.4, 0, .2, 1);
}

/* ── Reset & Base ─────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--navy-dark);
  color: var(--white);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
}

/* ── Utility ──────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1260px;
  margin: 0 auto;
}

/* ── Geometric Decorative Shapes ──────────────────────── */
.shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: .45;
  z-index: 0;
}

.shape--pink { background: var(--pink); }
.shape--teal { background: var(--teal); }
.shape--globe { background: var(--globe); }

/* ── Navbar ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  background: rgba(13, 18, 41, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 0 10px rgba(92, 225, 230, 0.4));
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text__top {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 200;
  color: var(--teal);
  line-height: .9;
  letter-spacing: -0.5px;
}

.logo-text__line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--pink), var(--teal));
  margin: 4px 0;
}

.logo-text__bottom {
  font-family: 'Inter', sans-serif;
  font-size: 0.4rem;
  letter-spacing: 3px;
  color: var(--pink);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--globe);
  transition: var(--transition);
  opacity: 0.8;
}

.nav-link:hover {
  color: var(--white);
  opacity: 1;
}

/* ── Hero Section ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: radial-gradient(circle at center, var(--navy) 0%, var(--navy-dark) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  background: rgba(92, 225, 230, .12);
  color: var(--teal);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(92, 225, 230, .2);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--white), var(--globe));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--pink), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: var(--globe);
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn--teal {
  background: var(--teal);
  color: var(--navy);
  box-shadow: var(--shadow-glow-teal);
}

.btn--teal:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px var(--teal-glow);
}

.btn--pink {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--shadow-glow-pink);
}

.btn--pink:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px var(--pink-glow);
}

/* ── Footer ───────────────────────────────────────────── */
.site-footer {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: rgba(192, 219, 254, 0.5);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 3rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; }
}
