/* style.css */

body {
  margin: 0;
  padding: 0;
  background-color: #0a0e17;
  font-family: 'Roboto', sans-serif;
  color: #e0e0e0;
  line-height: 1.6;
}

h1, h2 {
  font-family: 'Orbitron', sans-serif;
  color: #00ffff;
}

a {
  color: #00ffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffffff;
}

/* Header */
.main-header {
  background-color: #101827;
  border-bottom: 2px solid #1f2937;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo h1 {
  margin: 0;
  font-size: 2.5rem;
  color: #00ffff;
}

.logo p {
  margin: 0;
  font-size: 1rem;
  color: #7f8ea3;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.menu li a {
  color: #e0e0e0;
  padding: 8px 16px;
  border-radius: 5px;
}

.menu li a.active,
.menu li a:hover {
  background-color: #00ffff;
  color: #0a0e17;
}

/* Hero section */
.hero {
  background: linear-gradient(to right, #0d121f, #0b1623);
  padding: 80px 20px;
  text-align: center;
  color: #e0e0e0;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #a0aec0;
}

.btn.primary {
  display: inline-block;
  padding: 12px 28px;
  background-color: #00ffff;
  color: #0a0e17;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.btn.primary:hover {
  background-color: #00bfbf;
  color: #fff;
}

/* Main content */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.video-grid iframe {
  width: 100%;
  max-width: 560px;
  height: 315px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

/* Sections */
section {
  padding: 60px 0;
}

section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

section .icon {
  margin-right: 10px;
}

/* Footer */
footer {
  background-color: #101827;
  padding: 40px 0;
  text-align: center;
  border-top: 2px solid #1f2937;
}

.footer-content p {
  margin-bottom: 15px;
  color: #94a3b8;
}

.footer-content .socials {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 0;
  margin: 0;
}

.footer-content .socials li a {
  color: #00ffff;
  font-weight: bold;
  transition: 0.3s;
}

.footer-content .socials li a:hover {
  color: #ffffff;
}
