@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard-gov.min.css");

:root {
  --primary-color: #8bb9ff;
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --bg-color: #ffffff;
}

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

body {
  font-family: 'Pretendard GOV', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.5;
}

.container {
  width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  min-height: 100vh;
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1380px;
  width: 100%;
  height: 80px;
  padding: 0 50px;
  margin: 0 auto;
  background: white;
}

.logo img {
  width: auto;
}

nav.gnb {
  display: flex;
  gap: 64px;
}

nav.gnb a {
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  position: relative;
}

nav.gnb a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
}

.btn-contact {
  background-color: #ff473e;
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Camp Hero Section */
.camp-hero {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto 20px;
  padding: 0 50px;
}

.camp-hero-inner {
  background-color: #FEE2E2; /* Soft pink background */
  border-radius: 32px;
  padding: 80px 80px;
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-content {
  flex: 1;
  z-index: 2;
}

.hero-image {
  flex: 0 0 500px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-right: -20px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  transform: translateY(20px);
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.hero-info {
  margin-bottom: 60px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(34, 34, 34, 1);
  border-width: 1px 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.12);
  padding: 12px;
  width:280px;
  letter-spacing: -0.5px

}

.info-line {
  margin-bottom: 2px;
  display: flex;
}

.info-line span {
  display: inline-block;
  width: 80px;
  color: #666;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn-primary.closed {
  width: 240px;
  height: 54px;
  background-color: #A8A29E; /* Grey/Brown color from image */
  color: white;
  border: none;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-primary.closed:hover {
  background-color: #8E8986;
  text-decoration: none;
}

.btn-outline {
  width: 240px;
  height: 54px;
  background-color: transparent;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-outline:hover {
  background-color: rgba(0,0,0,0.05);
}

/* Camp Intro Section */
.camp-intro {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto 100px;
  padding: 0 50px;
}

.camp-intro-inner {
  background-color: #f8f9fa;
  border-radius: 32px;
  padding: 80px 0;
  text-align: center;
}

.intro-title {
  font-size: 40px;  
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 50px;
  margin-bottom: 12px;
  color: rgba(34, 34, 34, 1);
  
}

.intro-desc {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #555;
  margin: 0 auto;
  max-width: 800px;
}

/* Camp Features Section */
.camp-features {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 180px;
  text-align: center;
  padding: 0 50px;
}

.features-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.features-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 16px;
  color: rgba(68, 68, 68, 1);
  font-weight: 400;
  letter-spacing: -0.5px;
}

.features-tags .tag {
  background-color: #f0f4f8;
  color: #555;
  padding:0 12px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.5px;
  height: 32px;
  line-height: 32px;

}

.features-desc {
  margin-top: 8px;
  font-size: 16px;
  color: #555;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.features-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
}

.feature-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-image {
  width: 200px;
  height: 200px;
  background-color: #f2f3f5;
  border-radius: 50%;
  margin-bottom:24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feature-image img {
  width: 200px; /* Adjust size based on design */
  height: auto;
  object-fit: contain;
}

.feature-name {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: -0.6px;
}

.feature-text {
  font-size: 16px;
  color: rgba(102, 102, 102, 1);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}

/* Camp Info Section */
.camp-info-section {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto 100px;
  padding: 0 50px;
}

.camp-info-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.camp-info-section .section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
}

.info-cards-container {
  display: flex;
  gap: 40px;
}

.info-card {
  flex: 1;
  border-radius: 32px;
}

/* Left Card */
.schedule-card {
  background-color: #fcf4cf;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px;
  text-align: center;
}

.schedule-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.4;
  color: rgba(64, 55, 33, 1);
  margin-bottom: 20px;
  letter-spacing: 0;
}

.schedule-desc {
  font-size: 20px;
  color: rgba(125, 121, 107, 1);
  font-weight: 400;
}

/* Right Card */
.details-card {
  background-color: #f8f9fc;
  padding: 60px 50px;
}

.details-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.details-title {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.details-title .highlight {
  position: relative;
  display: inline-block;
}

.details-title .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 12px;
  background-color: #ffea00;
  z-index: -1;
}

.badge-closed {
  background-color: #e5e5e5;
  color: #777;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

.details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.details-list li {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}

.details-list .number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #ffea00;
  color: #333;
  border-radius: 50%;
  font-size: 12px;
  font-weight:600;
}

.detail-value {
  font-size: 20px;
  color: #444;
  line-height: 1.6;
  letter-spacing: -0.5px;
  font-weight: 400;
}

/* Camp Extra Benefits Section */
.camp-extra-benefits-section {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.camp-extra-benefits-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.camp-extra-benefits-section .section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -0.5px;
  color: #222;
}

.benefits-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 1020px;
}

.benefit-row {
  display: flex;
  gap: 30px;
  height: 160px;
}

.benefit-card {
  border-radius: 40px;
  display: flex;
  align-items: center;
}

.benefit-card.text-card {
  flex: 1;
  background-color: #F4F5F7;
  padding: 0 50px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.benefit-card.text-card.right-aligned-text-card {
  justify-content: space-between;
}

.benefit-card.image-card {
  width: 160px;
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-number {
  width: 90px;
  height: 90px;
  background-color: #222;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size:20px;
  font-weight: 700;
  flex-shrink: 0;
}

.benefit-info {
  display: flex;
  flex-direction: column;
}

.benefit-info h4 {
  font-size: 28px;
  font-weight: 800;
  color: #222;
  margin: 0;
}

/* Camp Programs Section */
.camp-programs-section {
  background-color: #f4f5f7;
  padding: 100px 0;
  width: 100%;
}

.camp-programs-section .section-header {
  text-align: center;
  margin-bottom: 32px;
}

.camp-programs-section .section-title {
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.camp-programs-section .section-desc {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  line-height: 24px;
  letter-spacing: 0;
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 50px;
}

.program-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.program-image-placeholder {
  width: 100px;
  height: 100px;
  background-color: #f0f0f0;
  border-radius: 16px;
  flex-shrink: 0;
}

.program-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.program-title {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.program-tags {
  display: flex;
  gap:5px;
  margin-bottom: 16px;
}

.program-tags .tag {
  background-color: rgba(239, 240, 246, 1);
  color: #555;
  font-size: 12px;
  padding: 0 8px;
  height: 26px;
  line-height: 26px;
  border-radius: 8px;
  font-weight: 400;
  letter-spacing: 0;
  font-size: rgba(34, 34, 34, 1);
}

.program-details {
  font-size: 14px;
  font-weight: 400;
  color: rgba(68, 68, 68, 1);
  display: flex;
  letter-spacing: -0.5px;
  align-items: center;
  gap: 8px;
}

.program-details .divider {
  color: #ddd;
}

.closed-badge {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background-color: #ff4785;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.programs-action {
  text-align: center;
  margin-top: 32px;
}

.btn-more-info {
  background-color: none;
  border: 1px solid rgba(229, 229, 229, 1);
  padding:0 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  height: 43px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-more-info-icon {
  width: 7px;
  height: 12px;
  display: block;
  flex-shrink: 0;
}

/* Camp Stories Section */
.camp-stories-section {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto 100px;
  padding: 100px 50px;
}

.camp-stories-section .section-header {
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
  color: rgba(34, 34, 34, 1);
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
}

.camp-stories-section .section-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: rgba(34, 34, 34, 1);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.story-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background-color: #f7f8fc;
}

.story-image {
  height: 268px;
  background-color: #e0e0e0;
  background-size: cover;
  background-position: center;
}

/* Background placeholders for demo */
.story-image.teacher-1-bg { background-image: url('../images/data/camp_data_1.png'); background-color: transparent; }
.story-image.teacher-2-bg { background-image: url('../images/data/camp_data_2.png'); background-color: transparent; }
.story-image.teacher-3-bg { background-image: url('../images/data/camp_data_3.png'); background-color: transparent; }
.story-image.student-1-bg { background-image: url('../images/data/camp_data_4.png'); background-color: transparent; }
.story-image.student-2-bg { background-image: url('../images/data/camp_data_5.png'); background-color: transparent; }
.story-image.student-3-bg { background-image: url('../images/data/camp_data_6.png'); background-color: transparent; }

.program-image-placeholder {
  width: 100px;
  height: 100px;
  background-color: #f0f0f0;
  border-radius: 16px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.program-image-placeholder.intro-1 { background-image: url('../images/camp_intro_1.png'); background-color: transparent; }
.program-image-placeholder.intro-2 { background-image: url('../images/camp_intro_2.png'); background-color: transparent; }
.program-image-placeholder.intro-3 { background-image: url('../images/camp_intro_3.png'); background-color: transparent; }
.program-image-placeholder.intro-4 { background-image: url('../images/camp_intro_4.png'); background-color: transparent; }
.program-image-placeholder.intro-5 { background-image: url('../images/camp_intro_5.png'); background-color: transparent; }
.program-image-placeholder.intro-6 { background-image: url('../images/camp_intro_6.png'); background-color: transparent; }

.story-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.story-author-badge {
  align-self: flex-start;
  background-color: #ffffff;
  padding: 9px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(34, 34, 34, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.story-text {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 28px;
  color: #444;
}

.stories-action {
  text-align: center;
  margin-top: 32px;
}

.btn-more-reviews {

  background-color: #ffffff;
  border: 1px solid rgba(229, 229, 229, 1);
  padding: 12px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-more-reviews:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
}

/* Footer Section */
.site-footer {
    background-color: #2b2b2b;
    color: #888888;
    padding: 50px 0;
    width: 100%;
}

.footer-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 50px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
    font-weight: 700;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.footer-controls {
    display: flex;
    gap: 12px;
}

.related-sites {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #888888;
    padding: 8px 16px;
    border-radius: 4px;
    outline: none;
    font-size: 13px;
    appearance: none;
    width: 140px;
}

.btn-top {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #bbb;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 0.2s;
}

.btn-top:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 12px;
    line-height: 1.6;
}

.company-info {
    margin-bottom: 10px;
}

.company-info .divider {
    margin: 0 8px;
    color: #555;
}

.copyright {
    color: #666;
}
