/* Base Styles */
:root {
  --primary-color: #4b128a; /* Deep purple */
  --secondary-color: #38b3e0; /* Bright blue */
  --accent-color: #f9a826; /* Golden/amber */
  --dark-bg: #051937; /* Deep space blue */
  --light-bg: #f5f5f7; /* Light gray/white */
  --text-color: #ffffff; /* White text */
  --dark-text: #333333; /* Dark text */
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  --gradient: linear-gradient(135deg, #4b128a 0%, #051937 100%);
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background-color: var(--dark-bg);
  color: var(--text-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 1rem;
  color: var(--text-color);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

img, svg {
  max-width: 100%;
  height: auto;
}

.btn-primary {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--dark-text);
  padding: 10px 25px;
  border-radius: var(--border-radius);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 3px 10px rgba(249, 168, 38, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(249, 168, 38, 0.4);
  background-color: #ffb84d;
}

/* Header Styles */
header {
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(5, 25, 55, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
  letter-spacing: 2px;
}

nav ul {
  display: flex;
  gap: 2rem;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  background-image: radial-gradient(circle, rgba(75, 18, 138, 0.3) 0%, rgba(5, 25, 55, 0.9) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="1000" viewBox="0 0 1000 1000"><g fill="%23FFFFFF"><circle cx="100" cy="100" r="1" /><circle cx="200" cy="150" r="1.2" /><circle cx="300" cy="50" r="1" /><circle cx="400" cy="200" r="1.5" /><circle cx="500" cy="100" r="1" /><circle cx="600" cy="150" r="1.3" /><circle cx="700" cy="50" r="1" /><circle cx="800" cy="200" r="1.2" /><circle cx="900" cy="100" r="1" /><circle cx="50" cy="250" r="1" /><circle cx="150" cy="300" r="1.2" /><circle cx="250" cy="200" r="1" /><circle cx="350" cy="350" r="1.5" /><circle cx="450" cy="250" r="1" /><circle cx="550" cy="300" r="1.3" /><circle cx="650" cy="200" r="1" /><circle cx="750" cy="350" r="1.2" /><circle cx="850" cy="250" r="1" /><circle cx="950" cy="300" r="1" /><circle cx="100" cy="400" r="1.2" /><circle cx="200" cy="350" r="1" /><circle cx="300" cy="450" r="1.5" /><circle cx="400" cy="350" r="1" /><circle cx="500" cy="400" r="1.3" /><circle cx="600" cy="350" r="1" /><circle cx="700" cy="450" r="1.2" /><circle cx="800" cy="350" r="1" /><circle cx="900" cy="400" r="1" /><circle cx="50" cy="500" r="1" /><circle cx="150" cy="450" r="1.2" /><circle cx="250" cy="550" r="1" /><circle cx="350" cy="450" r="1.5" /><circle cx="450" cy="500" r="1" /><circle cx="550" cy="450" r="1.3" /><circle cx="650" cy="550" r="1" /><circle cx="750" cy="450" r="1.2" /><circle cx="850" cy="500" r="1" /></g></svg>');
  opacity: 0.5;
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* About Section */
.about {
  padding: 5rem 5%;
  background-color: rgba(75, 18, 138, 0.1);
}

.about h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.about-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Space Section */
.space {
  padding: 5rem 5%;
  text-align: center;
}

.space h2 {
  margin-bottom: 3rem;
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.space-card {
  background: rgba(56, 179, 224, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
  border: 1px solid rgba(56, 179, 224, 0.3);
}

.space-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  background: rgba(56, 179, 224, 0.2);
}

.space-card h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Entertainment Section */
.entertainment {
  padding: 5rem 5%;
  background-color: rgba(75, 18, 138, 0.1);
  text-align: center;
}

.entertainment h2 {
  margin-bottom: 1rem;
}

.entertainment > p {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.entertainment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.entertainment-category {
  flex: 1;
  min-width: 300px;
  background: rgba(5, 25, 55, 0.5);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.entertainment-category h3 {
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.entertainment-category ul li {
  margin-bottom: 1rem;
}

.entertainment-category ul li:last-child {
  margin-bottom: 0;
}

/* Contact Section */
.contact {
  padding: 5rem 5%;
  text-align: center;
}

.contact h2 {
  margin-bottom: 3rem;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border-radius: var(--border-radius);
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  font-family: 'Roboto', sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--secondary-color);
  background-color: rgba(255, 255, 255, 0.15);
}

/* Footer */
footer {
  background-color: rgba(5, 25, 55, 0.9);
  padding: 4rem 5% 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-links h3,
.footer-entertainment h3 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.footer-links ul li,
.footer-entertainment ul li {
  margin-bottom: 0.7rem;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: rgba(5, 25, 55, 0.95);
    padding: 2rem;
    gap: 1.5rem;
    text-align: center;
  }

  nav ul.active {
    display: flex;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 2rem;
  }

  .space-card,
  .entertainment-category,
  .contact-info,
  .contact-form {
    min-width: 100%;
  }

  section {
    padding: 3rem 5%;
  }
}
