﻿/* =========================
   COLOR VARIABLES
   ========================= */
:root {
  --color-bg: #1c1c2e;
  --color-bg-alt: #2a2a42;
  --color-nav-bg: rgba(28, 28, 46, 0.95);
  --color-text: #f0f0f5;
  --color-muted-text: #a0a0b0;
  --color-accent: #ff3d3d;
  --color-testimonial-bg: #ffffff;
  --color-testimonial-text: #1c1c2e;
  --color-footer-bg: #11112a;
  --font-family-titles: "Monoton", sans-serif !important;
  --font-family-main: 'Source Sans Pro', sans-serif;
}

/* =========================
   BASE
   ========================= */
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family-main);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

/* =========================
   NAVIGATION
   ========================= */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  background: var(--color-nav-bg);
  padding: 1rem 2rem;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-family-titles);
  font-weight: normal !important;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--color-accent);
}

/* =========================
   BURGER
   ========================= */
.burger {
  display: none;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-text);
  color: var(--color-text);
  border-radius: 20%;
  cursor: pointer;
  padding: 8px 8px;
  transition: background 0.3s, transform 0.2s;
  line-height: 1;
}

@media (max-width: 700px) {
  .burger {
    display: block;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    right: 0;
    left: 0;
    background: var(--color-bg-alt);
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 0;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 0.5rem 0;
  }
}

/* =========================
   SECTIONS
   ========================= */
section {
  padding: 50px 20px 100px;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--color-accent);
  font-family: var(--font-family-titles);
  font-weight: normal !important;
}

.alt-bg {
  background: var(--color-bg-alt);
}

/* =========================
   HERO
   ========================= */
#video-section {
  position: relative;
  height: 60vh;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
}

#video-section video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
}

.overlay {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
  padding: 2rem;
  border-radius: 16px;
  animation: fadeInUp 1s ease;
}

.overlay h1 {
  font-family: var(--font-family-titles);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: normal !important;
  color: rgb(255, 255, 255);
  text-shadow:
    0 0 5px #0ff,
    0 0 10px #0ff,
    0 0 20px #0ff,
    0 0 40px #0ff,
    0 0 80px #0ff;
}

.overlay p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  background: var(--color-accent);
  color: var(--color-text);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.cta-btn:hover {
  background: var(--color-accent);
  filter: brightness(85%);
  transform: translateY(-3px);
}

/* =========================
   ICONS / FEATURES
   ========================= */
.icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: auto;
}

.icon-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.icon-box img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  filter: invert();
}

/* =========================
   ABOUT
   ========================= */
.about-content {
  max-width: 800px;
  margin: auto;
  text-align: left;
  font-size: 1.1rem;
}

.about-content p+p {
  margin-top: 1.5rem;
}

/* =========================
   TESTIMONIALS
   ========================= */
.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 900px;
  margin: auto;
}

.testimonial {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  position: relative;
}

.testimonial:nth-child(even) {
  flex-direction: row-reverse;
}

.testimonial img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.testimonial p {
  background: var(--color-testimonial-bg);
  color: var(--color-testimonial-text);
  padding: 1.5rem;
  border-radius: 12px;
  max-width: 500px;
  font-size: 1rem;
  line-height: 1.5;
  position: relative;
}

.testimonial:nth-child(odd) p::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid var(--color-testimonial-bg);
}

.testimonial:nth-child(even) p::before {
  content: '';
  position: absolute;
  right: -10px;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid var(--color-testimonial-bg);
}

.testimonial-author {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 600;
  color: var(--color-accent);
}


/* =========================
   CONTACT CARD
   ========================= */
.contact-card {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: rgba(255, 61, 61, 0.05); /* subtle red accent background */
  border: 1px solid var(--color-accent);
  border-radius: 16px;
  text-align: left;
  animation: fadeInUp 1s ease;
}

.contact-card h2 {
  font-family: var(--font-family-titles);
  font-weight: normal !important;
  color: var(--color-accent);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-card p {
  margin-bottom: 1rem;
  color: var(--color-text);
  font-size: 1.05rem;
}

.contact-card a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
}

.contact-card ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.contact-card ul li {
  margin-bottom: 0.5rem;
}

.contact-card .small-text {
  font-size: 0.95rem;
  color: var(--color-muted-text);
  text-align: center;
}

/* =========================
   FORM
   ========================= */
form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: left;
}

fieldset {
  border: none;
  margin-bottom: 1.5rem;
}

legend {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
}

label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 0.9rem;
  border-radius: 8px;
  font-size: 1rem;
  border: 1.8px solid var(--color-accent);
  outline: none;
  transition: border-color 0.3s;
}

input:focus,
textarea:focus {
  border-color: var(--color-accent);
}


/* =========================
   FOOTER
   ========================= */
footer {
  background: var(--color-footer-bg);
  color: var(--color-muted-text);
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.95rem;
}

footer a {
  color: var(--color-accent);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* =========================
   ANIMATIONS
   ========================= */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE / MOBILE
   ========================= */

@media (max-width: 700px) {

  /* LOGO */
  .logo {
    font-size: 1.2rem;
  }

  /* Hero */
  #video-section {
    height: auto;
    padding: 5rem 1rem;
  }

  .overlay {
    padding: 1.5rem;
  }

  .overlay h1 {
    font-size: 2rem;
  }

  .overlay p {
    font-size: 1rem;
  }

  /* Hero title smaller on tiny screens */
  .overlay h1 {
    font-size: 1.6rem;
  }

  /* Section titles smaller on tiny screens */
  .section-title {
    font-size: 1.6rem;
  }
  
  /* Features */
  .icon-box {
    padding: 1.2rem;
  }
  
  .icon-box img {
    width: 60px;
    height: 60px;
  }
  
  /* About */
  .about-content {
    font-size: 1rem;
    line-height: 1.7;
    padding: 0 0.5rem;
  }
  
  /* Testimonials */
  .testimonial {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
  }
  
  .testimonial img {
    width: 60px;
    height: 60px;
  }
  
  .testimonial p {
    max-width: 100%;
    font-size: 0.95rem;
  }
  
  .testimonial p::before {
    display: none;
  }
  
  /* Form */
  .cta-btn,
  button[type="submit"] {
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem;
  }
}

