@charset "UTF-8";


body {
  font-family: 'Barlow', sans-serif; 
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #eee;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.navi {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  background-color: white;
}

.navi li a {
  color: #222;
  text-decoration: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.navi li a:hover {
  background-color: #f0f0f0;
  color: #000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.search-button .material-icons {
  font-size: 20px;
  color: #333;
}

.dropdown-content,
.dropdown-submenu {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 180px;
  z-index: 10;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  padding: 0;
  margin: 0;
}

.dropdown:hover > .dropdown-content {
  display: block;
}

.dropdown-content li,
.dropdown-submenu li {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.dropdown-content li a,
.dropdown-submenu li a {
  color: black;
  padding: 12px 16px;
  display: block;
  text-align: left;
  font-size: 15px;
  text-decoration: none;
}

.dropdown-content li:hover {
  background-color: #ddd;
}

.dropdown-submenu {
  top: 0;
  left: 100%;
}

.dropdown-content li.dropdown:hover > .dropdown-submenu {
  display: block;
}


.hero {
  background: url('images/nct-hero.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

.hero p {
  max-width: 600px;
  margin: 20px auto;
  font-size: 1.1rem;
}


.button,
.button-link {
  background-color: #f5f5f5;
  padding: 12px 24px;
  border: 1px solid #ccc;
  border-radius: 30px;
  color: #222;
  font-weight: 600;
  font-size: 16px;
  font-family: 'Barlow', sans-serif;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.button:hover,
.button-link:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.button-wrapper {
  text-align: center;
  margin-top: 2rem;
}



.about-logo {
  width: 250px;
  height: auto;
  display: block;
  margin: 1rem auto;
}

.section {
  padding: 60px 20px;
  max-width: 1300px;
  margin: auto;
}

.section h3 {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-top: 0; 
  margin-bottom: 1rem;
}
.section-description {
  text-align: center;
  max-width: 600px;
  margin: auto;
  color: #555;
  font-size: 1rem;
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem;
}

.unit-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;		
}

.unit-card:hover {
  transform: translateY(-5px);
}

.unit-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}


.unit-info {
  padding: 1rem;
}

.unit-name {
  color: #222;
  font-size: 18px;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.unit-desc {
  color: #555;
  font-size: 14px;
}

.unit-link {
  text-decoration: none;
  color: inherit;
}

.read-more-wrapper,
.view-more-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.contact-form {
  max-width: 500px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  font-family: 'Barlow', sans-serif;
}


.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  align-self: center;
}

.contact-email {
  text-align: center;
  color: #888;
  font-size: 0.95rem;
}

footer {
  background: #f6f6f6;
  padding: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: #666;
}

.footer-links a {
  margin: 0 10px;
  color: #333;
  text-decoration: none;
}

.about-logo {
  width: 150px;
  display: block;
  margin: 2rem auto;
}

.center-logo {
  text-align: center;
}

.member-tags {
  text-align: center;
  margin-bottom: 1rem;
}

.member-tags span {
  display: inline-block;
  background-color: #eee;
  padding: 0.5rem 1rem;
  margin: 0 5px;
  border-radius: 20px;
  font-size: 14px;
}

.member-tags .tag {
  display: inline-block;
  padding: 8px 16px;
  margin: 5px;
  border: 1px solid #999;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  background-color: white;
  color: #333;
  transition: all 0.3s ease;
}

.member-tags .tag:hover {
  background-color: #eee;
  color: #000;
  transform: scale(1.05); 
}

.member-tags .tag.active {
  background-color: #222;
  color: #fff;
  border-color: #222;
}



.member {
  text-align: center;
}

.member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
}



.member-card img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}


.member-card.hide {
  display: none;
}

.tag {
  cursor: pointer;
  margin-right: 10px;
}

.section h2 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}

body {
  font-family: 'Barlow', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fdfdfd;
}

h2, h3 {
  margin-top: 40px;
  font-weight: 700;
}

hr.divider {
  border: none;
  border-top: 2px solid #ccc;
  margin: 10px 0 20px 0;
}


.member-list, .links-list {
  list-style: none;
  padding-left: 0;
}

.member-list li::before {
  content: "• ";
  color: #67a;
}

.discography-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.discography-table th,
.discography-table td {
  border: 1px solid #ddd;
  padding: 8px 12px;
  text-align: left;
}

.discography-table th {
  background-color: #f0f0f0;
  font-weight: bold;
}

.nct-overview-section {
  padding: 40px 20px;
  background-color: #f7f7f7;
  border-top: 1px solid #ddd;
}

.nct-overview-section h3 {
  text-align: center;
  margin-bottom: 20px;
}

.nct-overview-section p {
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: center;
  line-height: 1.6;
}

.nct-table {
  width: 80%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.nct-table th,
.nct-table td {
  border: 1px solid #ccc;
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
}

.nct-table th {
  background-color: #e0e0e0;
  font-weight: bold;
  width: 30%;
}

.milestones {
  list-style: none;
  padding-left: 0;
}
.milestones li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.milestones li::before {
  content: "🎵";
  position: absolute;
  left: 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #6cbf47;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 30px;
  box-sizing: border-box;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 20px;
  width: 14px;
  height: 14px;
  background-color: #6cbf47;
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #6cbf47;
  z-index: 1;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(odd)::before {
  right: -7px;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-item:nth-child(even)::before {
  left: -7px;
}

.timeline-date {
  font-weight: bold;
  color: #6cbf47;
  display: block;
  margin-bottom: 6px;
}

.timeline-content {
  color: #333;
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
}

.timeline-item::before {
  transition: transform 0.3s ease;
}

.timeline-item:hover::before {
  transform: scale(1.3);
}

.timeline::before {
  animation: drawLine 2s ease-out forwards;
}

@keyframes drawLine {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

.member-card img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover img {
  transform: scale(1.08);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.member-info {
  display: none;
  font-size: 0.85em;
  color: #555;
  margin-top: 5px;
}

.member-card:hover .member-info {
  display: block;
}

.members-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}
.member-card {
  text-align: center;
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: calc(var(--i) * 0.1s);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.center-logo img {
  display: block;
  margin: 40px auto 5px;
  max-width: 300px;
}

.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: 0 ;
  overflow: hidden;
}

.slide {
  display: none;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from { opacity: .4 }
  to { opacity: 1 }
}
.square-members h3 {
  text-align: center;
  font-size: 2rem;     
  font-weight: bold;
  margin-bottom: 10px;
}

.square-members .member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
  max-width: 880px;  
  margin-left: auto;
  margin-right: auto;
}


.square-members .member-card {
  text-align: center;
  font-size: 0.9rem;
}

.square-members .member-card img {
  width: 100%;
  aspect-ratio: 1 / 1; 
  object-fit: cover;
  border-radius: 0; 
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.square-members .member-card {
  text-align: center;
  font-size: 0.9rem;
}

.square-members .member-card img {
  width: 100%;
  aspect-ratio: 1 / 1; 
  object-fit: cover;
  border-radius: 0; 
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.achievements-section {
  text-align: center;
  padding: 60px 20px;
  color: #000;                 
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.achievements-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.achievements-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #000; 
}

.achievement-list p {
  font-size: 1.05rem;
  margin: 12px 0;
  color: #333333; 
}

.discography-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  position: relative;
}

.section-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 60px;
}

.album-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.album-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: #333;
  transform: translateX(-50%);
}

.album-item {
  position: relative;
  width: 45%;
  padding: 20px;
 
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.album-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.album-item.left {
  left: 0;
  margin-right: auto;
  text-align: right;
}

.album-item.right {
  right: 0;
  margin-left: auto;
  text-align: left;
}

.album-item::after {
  content: "";
  position: absolute;
  top: 20px;
  width: 12px;
  height: 12px;
  background-color: #333;
  border-radius: 50%;
  z-index: 2;
}

.album-item.left::after {
  right: -6px;
}

.album-item.right::after {
  left: -6px;
}

.album-year {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.album-info p {
  margin: 5px 0 0;
  font-size: 1rem;
  color: #555;
}

.album-cover {
  width: 150px;
  border-radius: 0px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.album-link {
  position: relative;
  display: inline-block;
}

.album-link:hover .album-cover {
  opacity: 0.6;
	transform: scale(1.05);
}

.hover-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.album-link:hover .hover-text {
  opacity: 1;
}

.album-info strong {
  display: block;
  margin-top: 10px;
  font-size: 1.1rem;
  color: #222;
}

.links-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;  
}

.links-list li a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.links-list li a:hover {
  transform: scale(1.05);
}

.link-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.links-section {
  text-align: center;
}



.news-hero {
  position: relative;
  text-align: center;
  color: white;
}
.hero-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.news-filters {
  text-align: center;
  margin: 30px 0;
}
.filter-buttons button {
  padding: 10px 20px;
  margin: 0 8px;
  background-color: #eee;
  border: none;
  cursor: pointer;
}
.filter-buttons .active {
  background-color: #222;
  color: white;
}

.news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 0 40px;
}
.news-card {
  width: 300px;
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
}
.news-card img {
  width: 100%;
}
.news-content {
  padding: 16px;
}
.news-date {
  font-size: 0.85em;
  color: #888;
}
.read-more {
  text-decoration: none;
  color: #0077cc;
  font-weight: bold;
}

.hero-text-2 {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.filter-tags {
  text-align: center;
  margin-bottom: 1rem;
}

.filter-tags span {
  display: inline-block;
  background-color: #eee;
  padding: 0.5rem 1rem;
  margin: 0 5px;
  border-radius: 20px;
  font-size: 14px;
}

.filter-tags .tag {
  display: inline-block;
  padding: 8px 16px;
  margin: 5px;
  border: 1px solid #999;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  background-color: white;
  color: #333;
  transition: all 0.3s ease;
}

.filter-tags .tag:hover {
  background-color: #eee;
  color: #000;
  transform: scale(1.05); 
}

.filter-tags .tag.active {
  background-color: #222;
  color: #fff;
  border-color: #222;
}

.news-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
padding: 20px;
}

.news-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.read-more {
  margin-top: auto; 
padding-top: 10px}



.news-detail-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  line-height: 1.6;
}

.news-detail-container img {
  max-width: 100%;
  width: 40%;
  display: block;
  margin: 0 auto 30px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.news-detail-container h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.news-date {
  font-weight: 500;
  color: #777;
  margin-bottom: 25px;
}

.news-detail-container p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.back-button {
  display: inline-block;
  margin-top: 40px;
  text-decoration: none;
  color: #222;
  border: 1px solid #222;
  padding: 10px 18px;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
  font-weight: 500;
}

.back-button:hover {
  background-color: #222;
  color: white;
}

.more-button:hover {
  background-color: #222;
  color: white;
}

.more-button {
  display: inline-block;
  margin-top: 40px auto 80px;
  text-decoration: none;
  color: #222;
  border: 1px solid #222;
  padding: 10px 18px;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
  font-weight: 500;
}


.page-intro {
  padding: 40px 20px;
  text-align: center;
}

.page-intro h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #111;
}

.tour-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}




.tour-nav ul li a {
  text-decoration: none;
  font-size: 18px;
  color: #333333;
  padding: 12px 20px;
  border: 2px solid #dddddd;
  border-radius: 20px;
	font-weight: 600;
  background-color: #ffffff;
  transition: all 0.2s ease-in-out;
}

.tour-nav ul li a:hover {
  background-color: #f5f5f5;
  border-color: #bbbbbb;
  color: #000000;
	transform: scale(1.05);
}



#stops {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

#stops h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 600;
}

.stops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.stop-card {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 8px 10px;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

.stop-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
}

.stop-card p {
  margin: 6px 0;
  font-size: 14px;
  color: #555;
}

.photo-link {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 12px;
  background-color: #222;
  color: #fff;
  font-size: 13px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.photo-link:hover {
  background-color: #444;
}

#stops, #content, #setlist{
  display: none;
}



#content {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

#content h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 600;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.content-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 16px;
  background-color: #fafafa;
  transition: box-shadow 0.3s ease;
}

.content-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.content-card .content-date {
  font-size: 14px;
  font-weight: bold;
  color: #666;
  margin-bottom: 6px;
}

.content-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #222;
}

.content-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.4;
}


#setlist {
  padding: 40px 20px;
  background-color: #fdfdfd;
}

.setlist-section {
  margin-bottom: 30px;
  padding: 16px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.setlist-section h3 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #555;
}

.setlist-section ul {
  padding-left: 20px;
}

.setlist-section li {
  line-height: 1.6;
  font-size: 15px;
}


#poster {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
  display: none; 
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.poster-card {
  border: 1px solid #eee;
  padding: 16px;
  border-radius: 3px;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.poster-card:hover {
	transform: scale(1.03);}

.poster-card img {
  width: 100%;
  margin-bottom: 4px;
}

.poster-card p {
  font-size: 22px;
  color: #444;
}


.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 40px;
  right: 60px;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
}


.radio-archive {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.year-block {
  margin-bottom: 40px;
}

.year-block h3 {
  font-size: 24px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 10px;
}

.radio-link {
  display: block;
  padding: 6px 10px;
  background-color: #f0f0f0;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.radio-link:hover {
  background-color: #dcdcdc;
}


.photo-list {
  margin: 0;
  padding-left: 20px;
  display: none;
}
.photo-list li {
  line-height: 1.8;
}
h3 {
  cursor: pointer;
  padding: 6px 10px;
  font-size: 18px;
}



.modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
	overflow-y: auto;
	padding: 40px 20px;
	box-sizing: border-box;
}
.modal img {
  max-width: 90%;
height: auto;
	object-fit: contain;
}



.text-list {
  list-style: none;
  padding: 0;
}

.text-list li {
  padding: 5px 0;
}

.moda12 {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
  overflow-y: auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.moda12 img {
  max-width: 80%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}
.panel img {
  width: 100px;
  margin: 5px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.panel img:hover {
  transform: scale(1.05);
}

.photo-archive {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
}

.archive-card {
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 8px;
}

.archive-date {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

.thumbnail-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thumbnail-group img {
  width: 120px;
  height: auto;
  cursor: pointer;
  transition: transform 0.2s;
}

.thumbnail-group img:hover {
  transform: scale(1.05);
}



.contact-container {
  max-width: 700px;
  margin: 100px auto;
  padding: 40px 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
}

.contact-container h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.contact-container p {
  font-size: 1.1em;
  margin: 10px 0;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.contact-list li {
  margin: 15px 0;
  font-size: 1.1em;
}

.contact-list a {
  color: #007bff;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.back-link {
  margin-top: 30px;
  font-size: 0.95em;
}

.back-link a {
  color: #555;
  text-decoration: none;
}

.back-link a:hover {
  text-decoration: underline;
}