/* Contact icons responsive styling */
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
  word-break: break-all;
}
.contact-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
@media (max-width: 600px) {
  .contact-item {
    gap: 0.35rem;
    font-size: 0.98rem;
  }
  .contact-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
  }
}
/* MV Carousel Styles */
.mv-carousel-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mv-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.mv-carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.mv-carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.mv-carousel-slide iframe {
  width: 100%;
  height: 400px;
  border-radius: 1.2rem;
  border: none;
}
.mv-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--button);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  opacity: 0.8;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mv-carousel-btn:hover {
  background: var(--button-hover);
}
.mv-carousel-btn.mv-prev { left: 10px; }
.mv-carousel-btn.mv-next { right: 10px; }
@media (max-width: 700px) {
  .mv-carousel-container { max-width: 100vw; }
  .mv-carousel-slide iframe { height: 250px; }
}
/* Founders Section */
.founders-section {
  text-align: center;
  margin-bottom: 2.5rem;
}
.founders-title {
  font-size: 2.1rem;
  color: var(--button-hover);
  margin-bottom: 2rem;
  text-align: center;
}
.founders-grid {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
}
.founder-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(182,224,254,0.13);
  padding: 2rem 2.2rem 2.5rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 260px;
  max-width: 340px;
  transition: transform 0.18s, box-shadow 0.18s;
  animation: fadeIn 0.7s;
}
.founder-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(247,200,224,0.13);
}
.founder-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.1rem;
  border: 4px solid var(--primary);
}
.founder-name {
  font-size: 1.35rem;
  color: var(--button-hover);
  margin: 0.2rem 0 0.5rem 0;
}
.founder-role {
  font-size: 1.08rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.founder-bio {
  font-size: 1.08rem;
  color: #666;
  text-align: justify;
}
/* CSU BAKSU K-pop Organization - Main Stylesheet */
:root {
  --primary: #f7c8e0;
  --secondary: #b6e0fe;
  --accent: #f9f871;
  --text: #333;
  --bg: #fff6fa;
  --header: #fff;
  --button: #ffb6b9;
  --button-hover: #ff6f91;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}
header {
background: var(--header);
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
position: sticky;
top: 10px; /* Adjusted to allow for sticky header */
z-index: 100;
border-radius: 1.2rem;
display: table;
margin: 1.2rem auto 0 auto;
width: auto;
transition: box-shadow 0.2s, width 0.2s, margin 0.2s;
padding: 0;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.2rem;
  background: transparent;
  box-shadow: none;
}
@media (max-width: 900px) {
  header {
    width: auto;
    margin: 0.7rem auto 0 auto;
    min-width: unset;
    max-width: unset;
    display: inline-block;
  }
}
@media (max-width: 700px) {
  header {
    width: calc(100vw - 2rem);
    border-radius: 1.2rem;
    margin: 0.7rem 1rem 0 1rem;
    left: 0;
    right: 0;
    min-width: unset;
    max-width: unset;
    display: block;
  }
  nav {
    border-radius: 0;
  }  
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: var(--primary);
}
.org-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.org-name-short {
  display: none;
}
.org-name-full {
  display: inline;
}
@media (max-width: 500px) {
}
.org-name-full {
  display: inline;
}
.org-name-short {
  display: none;
}
@media (max-width: 500px) {
  .org-name-full {
    display: none;
  }
  .org-name-short {
    display: inline;
  }
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.25s cubic-bezier(.4,0,.2,1), background 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s cubic-bezier(.4,0,.2,1), transform 0.22s cubic-bezier(.4,0,.2,1);
  padding: 0.3em 0.3em;
  border-radius: 1.2em;
}
.nav-links a:hover, .nav-links a:focus {
  color: #fff;
  background: var(--button-hover);
  box-shadow: 0 2px 8px rgba(255,111,145,0.10);
  outline: none;
  transform: scale(1.08);
}
.join-btn {
  background: var(--button);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.5rem 1.5rem;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.join-btn:hover {
  background: var(--button-hover);
  transform: scale(1.08);
  box-shadow: 0 2px 8px rgba(255,111,145,0.10);
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--button-hover);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  display: block;
}

/* Hamburger to X animation */
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 900px) {
  nav {
    padding: 0.5rem 1rem;
  }
  .nav-links {
    gap: 1rem;
  }
}
@media (max-width: 700px) {
  .nav-links {
    position: fixed;
    top: 60px;
    right: -100vw;
    background: var(--header);
    flex-direction: column;
    width: auto;
    height: auto;
    gap: 2rem;
    padding: 2rem 1rem;
    box-shadow: -2px 0 12px rgba(0,0,0,0.08);
    border-radius: 1.2rem;
    transition: right 0.3s;
    z-index: 200;
  }
  .nav-links.open {
    right: 0;
  }
  .hamburger {
    display: flex;
  }
}
main {
  min-height: 70vh;
  padding: 2rem 1rem;
}
footer {
  text-align: center;
  padding: 1rem;
  background: var(--header);
  color: #888;
  font-size: 0.95rem;
  margin-top: 2rem;
  border-top: 1px solid #eee;
}
/* Carousel Styles */
/* Welcome Section */
.welcome-section {
  text-align: center;
  padding: 1rem 1rem 0 1rem;
}
.welcome-section h1 {
  font-size: 2.5rem;
  color: var(--button-hover);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.welcome-section p {
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
  text-align: center;

  margin: 0 auto 1rem auto;
}
@media (max-width: 700px) {
  .welcome-section h1 {
    font-size: 2rem;
  }
}

.carousel {
  position: relative;
  max-width: 900px;
  margin: 2rem auto 2.5rem auto;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(247,200,224,0.15);
  background: var(--bg);
}
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.carousel-slide {
  min-width: 100%;
  height: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide img {
  width: 100%;
  aspect-ratio: 2 / 1;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 1.5rem;
}
@media (max-width: 700px) {
  .carousel-slide img, .carousel-slide { 
    height: 300px;
  }
}
/* MV Section */
.mv-section {
  max-width: 900px;
  margin: 2.5rem auto 1.5rem auto;
  text-align: center;
}
.mv-section h2 {
  color: var(--button-hover);
  margin-bottom: 1rem;
}
.mv-embed {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(182,224,254,0.10);
}
.mv-embed iframe {
  border: none;
  border-radius: 1.2rem;
  width: 100%;
  min-height: 220px;
}
@media (max-width: 700px) {
  .mv-embed iframe { min-height: 160px; }
}
/* Officers Section */
.officers-section {
  max-width: 1200px;
  margin: 2.5rem auto;
  text-align: justify;
}
.officers-section h2 {
  font-size: 2rem;
  color: var(--button-hover);
  margin-bottom: 2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
}
.org-name-full, .org-name-short {
  color: var(--button-hover);
  font-weight: bold;
  font-size: 17px;
  padding-right: 3.2rem;
  line-height: 1.1;
  letter-spacing: 0.5px;
  font-family: 'Poppins', Arial, sans-serif;
}
.org-name-short {
  font-size: 1.25rem;
  .org-name-full, .org-name-short {
    font-size: 1.13rem;
  }
}
@media (max-width: 500px) {
  .org-name {
    font-size: 1.08rem;
    margin-left: 0.3rem;
  }
  .org-name-full, .org-name-short {
    font-size: 1.01rem;
  }
}
.officers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  justify-items: center;
}
.officer-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(182,224,254,0.10);
  padding: 1.2rem 1rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s;
  animation: fadeIn 0.7s;
  min-width: 200px;
  max-width: 260px;
}
.officer-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(247,200,224,0.13);
}
.officer-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.7rem;
  border: 3px solid var(--primary);
}
.officer-card h3 {
  margin: 0.2rem 0 0.3rem 0;
  font-size: 1.1rem;
  color: var(--button-hover);
}
.officer-card .position {
  font-size: 0.98rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.officer-card .bio {
  font-size: 0.97rem;
  color: #666;
}

/* Performers Section */
.performers-section {
  max-width: 1100px;
  margin: 2.5rem auto 1.5rem auto;
  text-align: justify;
}
.performers-section h2 {
  font-size: 2rem;
  text-align: center;
  color: var(--button-hover);
  margin-bottom: 2rem;
}
.performers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  justify-items: center;
}
.performer-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(182,224,254,0.10);
  padding: 1.2rem 1rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s;
  animation: fadeIn 0.7s;
  min-width: 200px;
  max-width: 260px;
}
.performer-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(247,200,224,0.13);
}
.performer-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.7rem;
  border: 3px solid var(--secondary);
}
.performer-card h3 {
  margin: 0.2rem 0 0.3rem 0;
  font-size: 1.1rem;
  color: var(--button-hover);
}
.performer-card .bio {
  font-size: 0.97rem;
  color: #666;
}

/* Become Performer Section */
.become-performer {
  max-width: 700px;
  margin: 3rem auto 1.5rem auto;
  text-align: center;
}
.become-performer h2 {
  color: var(--button-hover);
  margin-bottom: 1rem;
}
.form-embed {
  margin: 1.5rem auto 0 auto;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(182,224,254,0.10);
}
.form-embed iframe {
  width: 100%;
  min-height: 400px;
  border: none;
  border-radius: 1.2rem;
}

/* About Us Section */
.about-section {
  max-width: 1000px;
  margin: 2.5rem auto 2rem auto;
  text-align: center !important;
}
.about-section h2 {
  font-size: 2.1rem;
  color: var(--button-hover);
  margin-bottom: 1.5rem;
}
.about-section p {
  text-align: justify;
  text-indent: 40px;
}
.about-desc {
  font-size: 1.08rem;
  color: #333;
  margin-bottom: 2.2rem;
}

/* Contact Section */
.contact-section {
  max-width: 700px;
  margin: 2.5rem auto 2rem auto;
  text-align: center;
}
.contact-section h2 {
  font-size: 2rem;
  color: var(--button-hover);
  margin-bottom: 1.2rem;
}
.contact-form-embed {
  margin: 1.5rem auto 2rem auto;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(182,224,254,0.10);
}
.contact-form-embed iframe {
  width: 100%;
  min-height: 400px;
  border: none;
  border-radius: 1.2rem;
}
.contact-info {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(182,224,254,0.10);
  padding: 1.2rem 1rem 1.3rem 2rem;
  margin: 2rem auto 0 auto;
  text-align: left;
  max-width: 500px;
}
.contact-info h3 {
  color: var(--button-hover);
  margin-bottom: 0.7rem;
}
.contact-info ul {
  list-style: none;
  padding: 0 0 0 1.2rem;
  margin: 0;
  color: #666;
  font-size: 1rem;
}
.contact-info li {
  margin-bottom: 0.7rem;
}
.contact-info a {
  color: var(--button-hover);
  text-decoration: none;
  word-break: break-all;
}
.contact-info a:hover {
  text-decoration: underline;
}

/* Join Us Section */
.join-section {
  max-width: 700px;
  margin: 2.5rem auto 2rem auto;
  text-align: center;
}
.join-section h2 {
  font-size: 2rem;
  color: var(--button-hover);
  margin-bottom: 1.2rem;
}
.join-desc {
  font-size: 1.08rem;
  color: #555;
  margin-bottom: 2rem;
}
.join-cta {
  margin-bottom: 2.2rem;
}
.discord-btn {
  display: inline-block;
  background: #7289da;
  color: #fff;
  padding: 0.7rem 2rem;
  border-radius: 2rem;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(114,137,218,0.10);
  transition: background 0.2s, transform 0.18s;
}
.discord-btn:hover {
  background: #5b6eae;
  transform: scale(1.04);
}
.join-form-embed {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(182,224,254,0.10);
  padding: 1.2rem 1rem 1.3rem 1rem;
  margin: 2rem auto 0 auto;
  text-align: center;
}
.join-form-embed h3 {
  color: var(--button-hover);
  margin-bottom: 0.7rem;
}
.join-form-embed p {
  color: #666;
  font-size: 1rem;
}
.join-form-embed iframe {
  width: 100%;
  min-height: 400px;
  border: none;
  border-radius: 1.2rem;
}
/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  animation: fadeIn 0.8s cubic-bezier(.4,0,.2,1);
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 3rem auto 2rem auto;
  text-align: center;
}
.faq-section h2 {
  font-size: 2rem;
  color: var(--button-hover);
  margin-bottom: 2rem;
}
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
.faq-item {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 8px rgba(182,224,254,0.08);
  transition: box-shadow 0.2s;
}
.faq-item[open] {
  box-shadow: 0 4px 16px rgba(247,200,224,0.15);
}
.faq-question {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  color: var(--button-hover);
  cursor: pointer;
  list-style: none; /* Remove default marker */
}
.faq-question::after {
  content: '';
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  margin-left: 1rem;
  margin-top: 0.2em;
  flex-shrink: 0; /* Prevents the icon from shrinking */
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease-in-out;
}
.faq-item[open] > .faq-question::after {
  transform: rotate(180deg);
}
.faq-question::-webkit-details-marker {
  display: none; /* Hide marker for Chrome/Safari */
}
.faq-answer {
  padding: 0 1.5rem 1.2rem 1.5rem;
  color: #555;
  line-height: 1.6;
}

/* Additional Mobile Responsiveness */
@media (max-width: 480px) {
  .welcome-section h1 {
    font-size: 1.8rem;
  }
  .welcome-section p {
    font-size: 1.1rem;
  }
  .mv-section h2, .faq-section h2, .officers-section h2, .founders-title {
    font-size: 1.7rem;
  }
  .faq-question {
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
  }
  .faq-answer {
    padding: 0 1.2rem 1rem 1.2rem;
  }
}
