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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #eeffff;
  background-color: #0a0a0a;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo h2 {
  color: #00ffff;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #ffbb00;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #00ffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00ffff;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  /*background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);*/
  background: linear-gradient(135deg, #000000 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #00ffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px #00ffff;
  }
  to {
    text-shadow: 0 0 30px #ffffff;
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  /*color: #cccccc;*/
  color: #ffbb00;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #eeffff;
  line-height: 1.8;
}

.cta-button {
  background: linear-gradient(45deg, #00ffff, #ffffff);
  color: #000000;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  /*text-transform: uppercase;*/
  text-transform: none;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

/* Hero Visual - Updated to use image instead of floating elements */
.hero-visual {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2rem;
	height: 500px; /* Set a specific height to match original design */
}

.hero-image {
	max-width: 99%;
	max-height: 99%;
	width: auto;
	height: auto;
	object-fit: contain; /* Ensures image maintains aspect ratio */
	border-radius: 15px;
	box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover {
	transform: scale(1.05);
	box-shadow: 0 25px 50px rgba(0, 255, 255, 0.3);
}

.hero-image-caption {
  margin-top: 0.6rem;
  font-size: 0.7rem;
  color: #cccccc;
  text-align: center;
  font-style: italic;
  line-height: 1.4;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.hero-visual:hover .hero-image-caption {
  color: #ffbb00;
  transition: color 0.3s ease;
}

/* Sections */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  /*color: #00ffff;*/
  color: #ffbb00;
}

.about {
  padding: 100px 0;
  background: #0a0a0a;
}

.about-content {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 3rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

/* Expandable About Content */
.expandable-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.3s ease;
  opacity: 0;
}

.expandable-content.expanded {
  max-height: 500px; /* Adjust based on content height */
  opacity: 1;
  transition: max-height 0.4s ease-in, opacity 0.3s ease;
}

.read-more-btn {
  background: transparent;
  color: #00ffff;
  border: 2px solid #00ffff;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.read-more-btn:hover {
  background: #00ffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
}

.about-text ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-text li {
  margin-bottom: 0.5rem;
  color: #cccccc;
  list-style-type: disc;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature {
  padding: 1.5rem;
  background: rgba(0, 255, 255, 0.1);
  border-left: 4px solid #00ffff;
  border-radius: 8px;
}

.feature h3 {
  color: #00ffff;
  margin-bottom: 0.5rem;
}

.feature p {
  color: #aaaaaa;
}

/* Performances */
.performances {
  padding: 100px 0;
  background: #0a0a0a;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.performance-card {
  background: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.performance-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.card-image {
  height: 200px;
  overflow: hidden;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #333333, #555555);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-image::before {
  content: '';
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  opacity: 0.9;
}

.performance-1 {
  background: linear-gradient(45deg, #00ffff, #0066cc);
}

.performance-1::before {
  background-image: url('images/theatre_masks.png');
}

.performance-2 {
  background: linear-gradient(45deg, #02a79e, #00ffff);
}

.performance-2::before {
  background-image: url('images/video_headset.png');
}

.performance-3 {
  background: linear-gradient(45deg, #ffffff, #2bb673);
}

.performance-3::before {
  background-image: url('images/laptop.png');
}

.performance-4 {
  background: linear-gradient(45deg, #ffffff, #f7ad40);
}

.performance-4::before {
  background-image: url('images/headset.png');
}

.performance-5 {
  background: linear-gradient(45deg, #eb5727, #ffffff);
}

.performance-5::before {
  background-image: url('images/game_controller.png');
}

.performance-6 {
  background: linear-gradient(45deg, #ffffff, #ed1c25);
}

.performance-6::before {
  background-image: url('images/glasses.png');
}

.card-content {
  padding: 2rem;
}

.card-content h3 {
  color: #ffbb00;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.card-content h4 {
  color: #00ffff;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card-content p {
  color: #cccccc;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.card-button {
  background: transparent;
  color: #00ffff;
  border: 2px solid #00ffff;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.card-button:hover {
  background: #00ffff;
  color: #000000;
}

/* People Section Styles */
.people {
  padding: 100px 0;
  background: linear-gradient(135deg, #000000 0%, #1a1a2e 50%, #16213e 100%);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.person-card {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.person-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.person-image {
  margin-bottom: 1.5rem;
}

.person-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #00ffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.person-card:hover .person-photo {
  border-color: #ffbb00;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.person-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #ffbb00;
}

.person-content h4 {
  font-size: 1.1rem;
  color: #00ffff;
  margin-bottom: 1rem;
  font-weight: 500;
}

.person-heritage {
  font-style: italic;
  color: #cccccc;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.person-content p:last-child {
  line-height: 1.6;
  color: #cccccc;
}

/* Contact */
.contact {
  padding: 100px 0;
  background: #111111;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  color: #00ffff;
  margin-bottom: 1rem;
}

.contact-info address {
  font-style: normal;
  color: #cccccc;
  line-height: 1.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #00ffff;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  background: #1a1a1a;
  border: 2px solid #333333;
  color: #ffffff;
  padding: 12px;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00ffff;
}

.submit-button {
  background: linear-gradient(45deg, #00ffff, #ffffff);
  color: #000000;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

/* Partners Section */
.partners {
  padding: 100px 0;
  background: #050505;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
  min-height: 120px;
  width: 100%;
  max-width: 250px;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.partner-logo:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.15);
}

.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0.8) contrast(1.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.partner-logo:hover img {
  filter: brightness(1) contrast(1.2);
}

.partner-text-above,
.partner-text-below {
  color: #cccccc;
  font-size: 0.5rem;
  font-weight: 500;
  text-transform: none;
  /*letter-spacing: 0.5px;*/
  transition: color 0.3s ease;
}

.partner-text-above {
  color: #ffbb00;
  margin-bottom: 0.25rem;
}

.partner-text-below {
  color: #00ffff;
  margin-top: 0.25rem;
  /*font-size: 0.85rem;*/
}

.partner-logo:hover .partner-text-above,
.partner-logo:hover .partner-text-below {
  color: #ffffff;
}

/* Empty state styling - when no partners are added yet */
.partners-grid:empty::after {
  content: "Partner logos will appear here";
  grid-column: 1 / -1;
  text-align: center;
  color: #666666;
  font-style: italic;
  padding: 3rem;
  border: 2px dashed #333333;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.02);
}

/* Footer */
.footer {
  background: #000000;
  padding: 2rem 0;
  text-align: center;
  color: #666666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 20px 50px;
  }

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

  .hero-visual {
	  flex-direction: column;
	  padding: 1rem;
	  margin-top: 2rem;
	  height: 300px; /* Reduce height for mobile */
  }

  .hero-image {
	  max-width: 99%;
	  max-height: 99%;
  }

  .hero-image:hover {
	  transform: scale(1.05);
	  box-shadow: 0 25px 50px rgba(0, 255, 255, 0.3);
  }

  .hero-image-caption {
    font-size: 0.85rem;
    max-width: 300px;
    margin-top: 0.75rem;
  }

  .about-content {
    padding: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .performance-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .people-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .person-card {
    padding: 20px;
  }

  .person-photo {
    width: 120px;
    height: 120px;
  }

  .person-content h3 {
    font-size: 1.3rem;
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
  }

  .partner-logo {
    min-height: 100px;
    padding: 1rem;
    gap: 0.5rem;
  }

  .partner-logo img {
    max-height: 60px;
  }

  .partner-text-above,
  .partner-text-below {
    font-size: 0.8rem;
  }

  .partner-text-below {
    font-size: 0.75rem;
  }
}

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

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .about-content {
    padding: 1.5rem;
  }
}
