/* Font Styles */
.font-primary {
  font-family: 'Orbitron', 'Montserrat', 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.font-secondary {
  font-family: 'Inter', 'Montserrat', sans-serif;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: lowercase;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.hero-content {
   width: 100%;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 12px 40px;
    background-color: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #667eea;
}

.logo-container {
    margin-bottom: 30px;
    animation: fadeIn 0.8s ease-out;
}

.maribit-logo {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.feature-card {
    padding: 30px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #667eea;
}

.feature-card h3 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.service-item {
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    color: #667eea;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Navbar */
.navbar-bg {
    background: linear-gradient(135deg, rgb(19 46 83), #0d1c36 100%)!important;
}

/* Footer */
footer {
    background: linear-gradient(135deg, rgb(19 46 83), #0d1c36 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

footer p {
    margin: 0;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

html, body {
  margin: 0;
  height: 100%;
  background: #02040c;
}

.electric-space {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;

  /* base electric gradient */
  background:
    radial-gradient(circle at 50% 35%,
      rgba(60, 242, 255, 0.25),
      rgba(30, 124, 255, 0.20) 35%,
      rgba(5, 10, 25, 1) 65%),
    radial-gradient(circle at 80% 60%,
      rgba(138, 92, 255, 0.15),
      transparent 60%),
    linear-gradient(180deg,
      #040816,
      #02040c);
}

/* electric particles */
.electric-space::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 25%, rgba(60,242,255,.9), transparent),
    radial-gradient(1px 1px at 70% 40%, rgba(138,92,255,.7), transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(255,255,255,.6), transparent),
    radial-gradient(1px 1px at 85% 80%, rgba(60,242,255,.5), transparent);
  background-size: 360px 360px;
  opacity: 0.55;
  pointer-events: none;
}

/* soft electric fog */
.electric-space::after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(60,242,255,.12),
      transparent 70%);
  filter: blur(80px);
  opacity: 0.8;
  pointer-events: none;
}

/* logo/card integration */
.brand-card {
  width: min(720px, 92vw);
  z-index: 2;
  filter:
    drop-shadow(0 0 25px rgba(60,242,255,.35))
    drop-shadow(0 0 80px rgba(30,124,255,.25))
    drop-shadow(0 0 140px rgba(138,92,255,.15));
}
