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

/* New Color Scheme Variables */
:root {
  --primary-color: #00BCD4;     /* Neon Cyan */
  --secondary-color: #FF4081;   /* Hot Pink */
  --accent-color: #FFEB3B;      /* Bright Yellow */
  --bg-color: #0B0C10;          /* Very Dark Background */
  --text-color: #C5C6C7;        /* Light Gray */
  --header-footer-bg: #1F2833;  /* Dark Slate */
  --border-color: #3A3F44;      /* Subtle Dark Border */
}

/* Body Styles */
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

/* Inner Container */
.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  width: 100%;
  background: var(--header-footer-bg);
  padding: 20px 0;
  border-bottom: 2px solid var(--primary-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header h1 {
  color: var(--accent-color);
  font-size: 2rem;
}

/* Menu Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--accent-color);
  cursor: pointer;
}

/* Navigation */
nav {
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: var(--accent-color);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

@media (any-hover: hover) {
  nav ul li a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
  }
}

/* Responsive Navigation */
@media (max-width: 768px) {
  header .inner {
    flex-direction: row;
    align-items: center;
  }
  .menu-toggle {
    display: block;
  }
  nav {
    width: 100%;
  }
  nav ul {
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  nav.open ul {
    max-height: 500px;
  }
  nav ul li {
    margin: 10px 0;
  }
}

/* Hero Section */
#hero {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  text-align: center;
  padding: 140px 20px;
  position: relative;
  overflow: hidden;
}

#hero h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

#hero p {
  font-size: 1.3rem;
  max-width: 750px;
  margin: 0 auto;
}

/* Section Container (Card Style) */
.container {
  max-width: 1200px;
  background: var(--header-footer-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 50px;
  margin: 40px auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  animation: fadeInUp 0.8s ease-out;
}

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

/* Section Headings */
section {
  margin-bottom: 40px;
}

section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--secondary-color);
  padding-bottom: 10px;
}

/* Accordion */
.accordion {
  background: #f7f7f7;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.accordion-header {
  background: #ececec;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

@media (any-hover: hover) {
  .accordion-header:hover {
    background-color: var(--secondary-color);
    color: #fff;
  }
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}

.accordion.active .accordion-content {
  padding: 15px 20px;
  max-height: 350px;
}

/* Forms & Buttons */
form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  background: #ffffff;
  color: var(--text-color);
}

button,
input[type="submit"] {
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  margin-top: 10px;
}

@media (any-hover: hover) {
  button:hover,
  input[type="submit"]:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
  }
}

button:focus,
input[type="submit"]:focus {
  outline: 2px solid var(--accent-color);
}

button:active,
input[type="submit"]:active {
  transform: translateY(0);
}

/* Footer */
footer {
  width: 100%;
  background: var(--header-footer-bg);
  padding: 20px 0;
  margin-top: 40px;
  border-top: 1px solid var(--border-color);
}

footer p {
  color: var(--text-color);
  text-align: center;
  font-size: 0.9rem;
}

footer a {
  color: var(--primary-color);
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s ease;
}

@media (any-hover: hover) {
  footer a:hover {
    color: var(--secondary-color);
  }
}
