/* 프로젝트 모달 스타일 */
.project-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,14,39,0.65);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.3s;
}
.project-modal {
  background: linear-gradient(135deg, #1e2749 0%, #764ba2 100%);
  border-radius: 32px;
  box-shadow: 0 8px 48px #764ba244;
  padding: 2.5rem 2rem 2rem 2rem;
  min-width: 320px;
  max-width: 95vw;
  max-height: 90vh;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: modalPop 0.3s;
}
.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #f093fb;
  cursor: pointer;
  z-index: 2;
}
.modal-img {
  width: 320px;
  max-width: 80vw;
  border-radius: 18px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 24px #764ba244;
  background: #222;
  object-fit: cover;
}
.modal-title {
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}
.modal-desc {
  font-size: 1.15rem;
  color: #cbd5e0;
  text-align: center;
  line-height: 1.7;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modalPop {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
/* 첫 번째 섹션 사이드 배치 및 GIF 공간 */
.hero-side-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-height: 70vh;
}
.hero-left {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
  padding-left: 2vw;
}
.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 400px;
}
.startup-gif-bg {
  width: 820px;
  height: 820px;
  border-radius: 64px;
  background: linear-gradient(135deg, #f093fb33 0%, #667eea33 100%);
  box-shadow: 0 24px 120px #764ba244;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border: 3px solid #764ba2;
  animation: gifGlow 3s infinite alternate;
}
@keyframes gifGlow {
  0% {
    box-shadow: 0 8px 48px #764ba244;
  }
  100% {
    box-shadow: 0 16px 64px #f093fb66;
  }
}
.finger-animate {
  animation: fingerUpDown 1.2s infinite;
}
@keyframes fingerUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(18px); }
}
@media (max-width: 1400px) {
  .startup-gif-bg {
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 1100px) {
  .startup-gif-bg {
    width: 380px;
    height: 380px;
  }
}
.hero-side-layout {
  .hero-side-layout {
    gap: 24px;
  }
  .startup-gif-bg {
    width: 300px;
    height: 300px;
  }
  .startup-gif-bg {
    width: 260px;
    height: 260px;
  }
}
@media (max-width: 900px) {
  .hero-side-layout {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding-left: 0;
  }
  .hero-left {
    align-items: center;
    padding-left: 0;
  }
  .hero-right {
    min-height: 180px;
  }
  .startup-gif-bg {
    width: 180px;
    height: 180px;
    border-radius: 32px;
  }
}
@media (min-width: 768px) {
  #hero .logo {
    font-size: 6rem;
    margin-bottom: 2.5rem;
    letter-spacing: 0.25em;
    text-shadow: 0 0 32px #764ba2, 0 0 8px #f093fb;
  }
  /* 배경 GIF 영역 */
  .hero-bg-gif {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-bg-gif img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    opacity: 0.7;
    filter: blur(0.5px) brightness(1.1);
  }
  /* 손가락 애니메이션 */
  .finger-animate {
    animation: fingerUpDown 1.2s infinite;
  }
  @keyframes fingerUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(18px); }
  }
}

/* About PICTO 섹션 스타일 */
#about-us {
  background: linear-gradient(135deg, #1a1f4d 0%, #0a0e27 100%);
  padding: 8rem 2rem;
  position: relative;
}
.about-content {
  margin-top: 4rem;
}
.about-main {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.about-heading {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}
.about-text {
  font-size: 1.2rem;
  color: #cbd5e0;
  line-height: 2;
}
.about-text strong {
  color: #f093fb;
  font-weight: 700;
}
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.about-card {
  background: linear-gradient(135deg, #1e2749 0%, #2d3561 100%);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 32px rgba(118, 75, 162, 0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.1);
}
.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(240, 147, 251, 0.25);
  border-color: rgba(240, 147, 251, 0.3);
}
.about-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.about-card h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-align: center;
}
.about-card p {
  font-size: 1.05rem;
  color: #a0aec0;
  line-height: 1.8;
  text-align: center;
}
.about-card p strong {
  color: #f093fb;
  font-weight: 700;
}

.contact-details {
  text-align: left;
}
.contact-label {
  font-size: 0.95rem;
  color: #f093fb;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.contact-value {
  font-size: 1.1rem;
  color: #fff;
}
/* index.css - 기존 index.html의 <style> 태그 내용 분리 */
/* 오른쪽 세로 인덱스 네비게이션 */
.vertical-index {
  position: fixed;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 100;
  background: rgba(10, 14, 39, 0.7);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(102, 126, 234, 0.15);
  padding: 18px 10px;
  border: 1.5px solid rgba(102, 126, 234, 0.18);
}
.index-item {
  cursor: pointer;
  padding: 10px 22px;
  border-radius: 16px;
  font-size: 1.08rem;
  font-weight: 600;
  color: #a0aec0;
  background: linear-gradient(
    90deg,
    rgba(102, 126, 234, 0.08) 0%,
    rgba(240, 147, 251, 0.08) 100%
  );
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.07);
  margin: 0 2px;
}
.index-item.active {
  color: #fff;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 4px 16px rgba(118, 75, 162, 0.18);
}
.index-item:hover {
  color: #fff;
  background: linear-gradient(90deg, #f093fb 0%, #764ba2 100%);
}
@media (max-width: 900px) {
  .vertical-index {
    right: 8px;
    padding: 10px 4px;
  }
  .index-item {
    font-size: 0.95rem;
    padding: 8px 10px;
  }
}
@media (max-width: 600px) {
  .vertical-index {
    display: none;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}
body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0e27;
  color: #fff;
  overflow-x: hidden;
  overflow-y: scroll;
}
section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  position: relative;
  scroll-snap-align: start;
}
.container {
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 1;
}
#hero {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 100%);
  position: relative;
  overflow: hidden;
}
.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.shape {
  position: absolute;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}
.shape:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
}
.shape:nth-child(2) {
  left: 80%;
  top: 60%;
  animation-delay: 5s;
}
.shape:nth-child(3) {
  left: 50%;
  top: 80%;
  animation-delay: 10s;
}
.shape:nth-child(4) {
  left: 20%;
  top: 70%;
  animation-delay: 15s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}
.hero-content {
  text-align: center;
}
/* 더 선명한 로고 스타일 */
.logo {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #f093fb 0%, #764ba2 60%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: 0.22em;
  text-shadow: 0 2px 24px #764ba2, 0 0 8px #f093fb, 0 0 2px #fff;
  animation: glow 3s ease-in-out infinite;
}
@keyframes glow {
  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(118, 75, 162, 0.8));
  }
}
.slogan {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.sub-slogan {
  font-size: 1.3rem;
  color: #a0aec0;
  margin-bottom: 3rem;
  line-height: 1.6;
}
.stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* 더 많은 이모지와 더 잘 보이게 */
.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.shape {
  position: absolute;
  font-size: 3.2rem;
  opacity: 0.22;
  filter: drop-shadow(0 2px 12px #764ba2cc);
  animation: float 18s infinite ease-in-out;
  transition: opacity 0.3s;
}
.shape:nth-child(1) {
  left: 8%;
  top: 18%;
  animation-delay: 0s;
}
.shape:nth-child(2) {
  left: 78%;
  top: 62%;
  animation-delay: 2s;
}
.shape:nth-child(3) {
  left: 52%;
  top: 82%;
  animation-delay: 4s;
}
.shape:nth-child(4) {
  left: 22%;
  top: 72%;
  animation-delay: 6s;
}
.shape:nth-child(5) {
  left: 70%;
  top: 28%;
  animation-delay: 8s;
}
.shape:nth-child(6) {
  left: 35%;
  top: 12%;
  animation-delay: 10s;
}
.shape:nth-child(7) {
  left: 60%;
  top: 50%;
  animation-delay: 12s;
}
.shape:nth-child(8) {
  left: 15%;
  top: 60%;
  animation-delay: 14s;
}
.shape:nth-child(9) {
  left: 40%;
  top: 80%;
  animation-delay: 16s;
}
.shape:nth-child(10) {
  left: 85%;
  top: 40%;
  animation-delay: 18s;
}
.shape:nth-child(11) {
  left: 30%;
  top: 35%;
  animation-delay: 20s;
}
.shape:nth-child(12) {
  left: 60%;
  top: 10%;
  animation-delay: 22s;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.project-card {
  background: linear-gradient(135deg, #1e2749 0%, #2d3561 100%);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(102, 126, 234, 0.2);
}
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}
.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-card:hover::before {
  opacity: 1;
}
.project-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.project-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f093fb;
}
.project-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd5e0;
  margin-bottom: 1rem;
}
.team-members {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.member-tag {
  background: rgba(102, 126, 234, 0.2);
  padding: 0.4rem 0.8rem;
  border-radius: 16px;
  font-size: 0.85rem;
  border: 1px solid rgba(102, 126, 234, 0.4);
}
.project-card.featured {
  grid-column: 1 / -1;
}

/* Team Leader 섹션 스타일 (이주미 소개) */
#team-leader {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 100%);
  padding: 8rem 2rem;
  position: relative;
}
.team-leader-intro {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.leader-profile {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 3rem;
  background: linear-gradient(135deg, #1e2749 0%, #2d3561 100%);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(118, 75, 162, 0.25);
  border: 1px solid rgba(102, 126, 234, 0.15);
}
.leader-image-wrapper {
  flex-shrink: 0;
}
.leader-image-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(240, 147, 251, 0.4);
  position: relative;
  overflow: hidden;
}
.leader-character {
  font-size: 6rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}
.leader-info {
  flex: 1;
}
.leader-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(240, 147, 251, 0.15);
  color: #f093fb;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  border: 1px solid rgba(240, 147, 251, 0.3);
}
.leader-main-name {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
}
.leader-major {
  font-size: 1.2rem;
  color: #cbd5e0;
  font-weight: 500;
}
.leader-story {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.story-section {
  padding: 2.5rem;
  background: linear-gradient(135deg, #1e2749 0%, #2d3561 100%);
  border-radius: 24px;
  box-shadow: 0 6px 24px rgba(118, 75, 162, 0.2);
  border-left: 4px solid #f093fb;
}
.story-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.story-text {
  font-size: 1.1rem;
  color: #cbd5e0;
  line-height: 1.9;
}
.story-text strong {
  color: #f093fb;
  font-weight: 700;
}

/* Field Leaders 섹션 스타일 (분야별 리더) */
#field-leaders {
  background: linear-gradient(135deg, #1a1f4d 0%, #0a0e27 100%);
  padding: 8rem 2rem;
}
#team-leaders {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 100%);
}
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.leader-card {
  background: linear-gradient(135deg, #1e2749 0%, #2d3561 100%);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid rgba(102, 126, 234, 0.2);
}
.leader-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(240, 147, 251, 0.1) 0%,
    rgba(102, 126, 234, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.leader-card:hover::before {
  opacity: 1;
}
.leader-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 70px rgba(240, 147, 251, 0.4);
  border-color: rgba(240, 147, 251, 0.6);
}
.leader-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  transition: all 0.4s ease;
}
.leader-card:hover .leader-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 15px 50px rgba(240, 147, 251, 0.6);
}
.leader-role {
  font-size: 0.9rem;
  color: #f093fb;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.leader-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.leader-description {
  font-size: 0.95rem;
  color: #a0aec0;
  line-height: 1.6;
}
#gallery {
  background: #0f1424;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.gallery-item {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1e2749 0%, #2d3561 100%);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(102, 126, 234, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
  border-color: rgba(240, 147, 251, 0.6);
}
.gallery-placeholder {
  font-size: 4rem;
  opacity: 0.3;
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(10, 14, 39, 0.95), transparent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}
.gallery-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #f093fb;
  margin-bottom: 0.5rem;
}
.gallery-desc {
  font-size: 0.9rem;
  color: #cbd5e0;
}
#contact {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 100%);
}
.contact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.contact-description {
  font-size: 1.2rem;
  color: #a0aec0;
  margin-bottom: 3rem;
  line-height: 1.8;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  background: linear-gradient(135deg, #1e2749 0%, #2d3561 100%);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(102, 126, 234, 0.2);
  cursor: pointer;
}
.contact-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 40px rgba(240, 147, 251, 0.3);
  border-color: rgba(240, 147, 251, 0.6);
}
.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.contact-details {
  text-align: left;
}
.contact-label {
  font-size: 0.9rem;
  color: #f093fb;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.contact-value {
  font-size: 1.1rem;
  color: #fff;
}
footer {
  background: #0a0e27;
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(102, 126, 234, 0.2);
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: 0.2em;
}
.footer-tagline {
  color: #a0aec0;
  font-size: 1rem;
  margin-bottom: 2rem;
}
.footer-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  color: #718096;
  font-size: 0.9rem;
}
.footer-divider {
  height: 1px;
  background: rgba(102, 126, 234, 0.2);
  margin: 2rem 0;
}
.footer-copyright {
  color: #4a5568;
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .nav-dots {
    right: 1rem;
  }
  .logo {
    font-size: 2.5rem;
  }
  .slogan {
    font-size: 1.8rem;
  }
  .sub-slogan {
    font-size: 1.1rem;
  }
  .stats {
    gap: 2rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .leaders-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .footer-info {
    flex-direction: column;
    gap: 0.5rem;
  }
  .about-heading {
    font-size: 1.8rem;
  }
  .about-text {
    font-size: 1rem;
  }
  .about-cards {
    grid-template-columns: 1fr;
  }
  .about-card h4 {
    font-size: 1.3rem;
  }
  .about-card p {
    font-size: 0.95rem;
  }
  .leader-profile {
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
  }
  .leader-image-placeholder {
    width: 150px;
    height: 150px;
  }
  .leader-character {
    font-size: 4.5rem;
  }
  .leader-main-name {
    font-size: 2rem;
    text-align: center;
  }
  .leader-major {
    font-size: 1rem;
    text-align: center;
  }
  .leader-badge {
    font-size: 0.75rem;
  }
  .story-section {
    padding: 1.8rem;
  }
  .story-heading {
    font-size: 1.3rem;
  }
  .story-text {
    font-size: 0.95rem;
  }
}

@media (min-width: 768px) {
  .section-title {
    font-weight: 900;
    margin-bottom: 3.5rem;
    margin-top: 0.5rem;
    line-height: 1.13;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 16px #764ba244;
    text-align: left;
    padding-left: 0.5vw;
    font-size: 2.2rem;
  }

  @media (min-width: 600px) and (max-width: 1100px) {
    .section-title {
      font-size: 2.8rem;
      padding-left: 1vw;
    }
  }

  @media (min-width: 1100px) {
    .section-title {
      font-size: 3.8rem;
      padding-left: 0.5vw;
    }
  }
*** End Patch
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
