/* Reset */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body {
  font-family: Arial, sans-serif;
  background: url('/media/background.png') no-repeat center center fixed;
  background-size: cover;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


/* Header */
header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

header .left-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo-image {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #a821a8;
}

/* Nav */
nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav a:hover {
  color: #f821a8;
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Nav (hidden by default) */
.nav-links {
  display: flex;
}

.nav-links.mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  flex-direction: column;
  width: 200px;
  border: 1px solid #ddd;
  padding: 1rem;
  z-index: 10;
}

.nav-links.mobile li {
  margin: 0.5rem 0;
}

.nav-links.mobile.show {
  display: flex;
}

/* Hero Section */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 1rem;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero h2 {
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
  color: #fff;
}

.hero .cta-main {
  background: #9c22a0;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}

.hero .cta-main:hover {
  background: #f821a8;
}

.hero .cta-secondary {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero .cta-secondary button {
  background: rgb(224, 199, 199);
  border: 1px solid #ccc;
  padding: 0.6rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.hero .cta-secondary button:hover {
  background: #ddd;
}

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

    /* Content Section */
    .content {
      max-width: 900px;
      margin: 40px auto;
      padding: 20px;
      background: #111150;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      color: #9c22a0;
    }

    .content h1, .content h2 {
      color: #9c22a0;
    }

    .content h1 {
      margin-bottom: 10px;
      color: #4369b2;
    }

    .content h2 {
      margin-top: 20px;
      margin-bottom: 10px;
    }

    ul {
      margin: 10px 0 20px 20px;
    }

    ul li {
      margin-bottom: 8px;
    }
     
/* Footer */
footer {
  background: #fff;
  border-top: 1px solid #ddd;
  padding: 1rem;
  text-align: center;
}

footer ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

footer a {
  text-decoration: none;
  color: #555;
  font-size: 0.9rem;
}

footer a:hover {
  color: #f821a8;
}

/* Hamburger animation */
.rotate1 { 
  transform: rotate(45deg) translate(5px, 5px); 
}

.rotate2 { 
  transform: rotate(-45deg) translate(5px, -5px); 
}

.hide { 
  opacity: 0; 
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links.desktop {
    display: none; /* hide desktop nav */
  }
  
  .hamburger {
    display: flex;
  }
}