* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #f5f5f5;
  line-height: 1.6;
}

/* HEADER */

header {
  background: #1e1e1e;
  padding: 20px 40px;
  position: relative;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.brand-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-link {
  text-decoration: none;
}

.brand-link h1 {
  color: #CBB26A;
  font-family: 'Poppins', sans-serif;
  font-size: 1.8em;
  margin: 0;
}

.brand-link .tagline {
  color: #CBB26A;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9em;
  letter-spacing: 1px;
  margin: 0;
  transform: translateY(2px);
}

.menu-toggle {
  background: none;
  border: none;
  color: #f5f5f5;
  font-size: 2em;
  cursor: pointer;
}

.header-logo-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.header-logo-centered img {
  height: 100px;
  opacity: 0.9;
}

/* SIDEBAR */

.sidebar {
  display: none;
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background: #1e1e1e;
  padding: 60px 20px;
  box-shadow: -2px 0 5px rgba(0,0,0,0.5);
  transition: right 0.3s ease;
  z-index: 999;
}

.sidebar.active {
  display: block;
  right: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 500;
}

.sidebar a:hover {
  color: #7C4DFF;
}

/* HERO SECTION */

.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #B00020, #7C4DFF);
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.btn {
  background: #f5f5f5;
  color: #B00020;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.btn:hover {
  background: #7C4DFF;
  color: #fff;
}

/* HIGHLIGHTS / SERVICES SECTION */

.highlights {
  padding: 60px 20px;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 8px;
}

/* PAGE CONTENT */

.page-content {
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
}

/* TEAM SECTION */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-member {
  text-align: center;
}

.team-member img {
  max-width: 100%;
  border-radius: 50%;
  border: 3px solid #7C4DFF;
}

.team-member h3 {
  margin-top: 10px;
  color: #B00020;
}

/* CONTACT FORM */

.contact-form {
  padding: 60px 20px;
  max-width: 600px;
  margin: auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  background: #1e1e1e;
  color: #f5f5f5;
  border: 2px solid #7C4DFF;
  border-radius: 4px;
}

.contact-form button {
  width: 100%;
}

/* FOOTER */

footer {
  background: #1e1e1e;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.footer-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 50px;
  margin-right: 10px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  vertical-align: middle;
}

.footer-logo:hover {
  opacity: 1;
}

footer p {
  color: #CBB26A;
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.9em;
  margin: 0;
}

/* RESPONSIVE BREAKPOINTS */

@media (max-width: 1024px) {
  header {
    padding: 15px 20px;
  }

  .header-logo-centered img {
    height: 80px;
  }
}

@media (max-width: 768px) {
  .header-logo-centered img {
    height: 60px;
  }

  .hero h1 {
    font-size: 2.2em;
  }

  .hero p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  header {
    padding: 10px 10px;
  }

  .brand-link h1 {
    font-size: 1.5em;
  }

  .brand-link .tagline {
    font-size: 0.8em;
  }

  .hero h1 {
    font-size: 1.8em;
  }

  .hero p {
    font-size: 0.9em;
  }

  .header-logo-centered img {
    height: 40px;
  }
@media (max-width: 768px) {
  .header-logo-centered {
    display: none;
  }

  header {
    padding: 10px 20px;
  }
/* Simple popup style */
.popup-message {
  display: none;
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: #1e1e1e;
  color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  max-width: 300px;
  text-align: center;
}

.popup-message.show {
  display: block;
}
