
/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.page {
    display: block;
}

/*.page.active {*/
/*    display: block;*/
/*}*/

.content-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Hero Sections */
.hero-section {
    border-radius: 0.5rem;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.hero-aqua {
    background: #09a7b3;
}

.hero-blue {
    background: var(--blue);
}

.hero-blue-green {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #16a34a 100%);
}

.hero-purple-blue {
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 50%, #16a34a 100%);
}

.hero-emerald-cyan {
    background: linear-gradient(135deg, #059669 0%, #2563eb 50%, #0891b2 100%);
}

.hero-red-blue {
    background: linear-gradient(135deg, #dc2626 0%, #2563eb 50%, #1e40af 100%);
}

.hero-purple-orange {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #ea580c 100%);
}

.hero-content {
    position: relative;
    /*z-index: 10;*/
}

.hero-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hero-icon {
    font-size: 2rem;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.hero-description {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 48rem;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-description {
        font-size: 1rem;
    }
}

/* Separator */
.separator {
    height: 1px;
    background: #e2e8f0;
    margin: 1.5rem 0;
}

/* Cards */
.card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.card:hover {
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.card-blue {
    border-left: 4px solid #2563eb;
}

.card-green {
    border-left: 4px solid #16a34a;
}

.card-orange {
    border-left: 4px solid #ea580c;
}

.card-purple {
    border-left: 4px solid #7c3aed;
}

.card-pink {
    border-left: 4px solid #ec4899;
}

.card-header {
    padding: 1.5rem 1.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.purple-bg {
    background: linear-gradient(to right, #faf5ff, #fdf2f8);
}

.pink-bg {
    background: linear-gradient(to right, #fdf2f8, #fff7ed);
}

.orange-bg {
    background: linear-gradient(to right, #fff7ed, #fefce8);
}

.card-icon-wrapper {
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-wrapper.blue {
    background: #dbeafe;
    color: #2563eb;
}

.card-icon-wrapper.green {
    background: #dcfce7;
    color: #16a34a;
}

.card-icon-wrapper.orange {
    background: #fed7aa;
    color: #ea580c;
}

.card-icon-wrapper.purple {
    background: #e9d5ff;
    color: #7c3aed;
}

.card-icon-wrapper.pink {
    background: #fce7f3;
    color: #ec4899;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.card-title.blue {
    color: #1d4ed8;
}

.card-title.green {
    color: #15803d;
}

.card-title.orange {
    color: #c2410c;
}

.card-title.purple {
    color: #6b21a8;
}

.card-title.pink {
    color: #be185d;
}

.card-title.center {
    text-align: center;
    justify-content: center;
}

.card-content {
    padding: 1.5rem;
}

.card-content.no-padding {
    padding: 0;
}

/* Goals Grid */
.goals-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.goal-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(to right, #f8fafc, #f1f5f9);
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

/*.goal-item:hover {*/
/*    background: linear-gradient(to right, #fff7ed, #fed7aa);*/
/*    !*background: var(--blue);*!*/
/*    !*color: white;*!*/
/*}*/

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stats-grid.four-cols {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.guild-list {
    display: none;
    border-style: solid;
    border-color: #e4e4e7;
    border-left-color: #3b82f6;
    margin-bottom: 1.5rem;
}

.guild-list.on {
    display: block;
}

.guild-container > div {
    cursor: pointer;
    border-style: solid;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card.guild-card:hover {
    cursor: pointer;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.stat-card.blue {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #bfdbfe;
}

.stat-card.green {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #bbf7d0;
}

.stat-card.purple {
    background: linear-gradient(135deg, #faf5ff, #e9d5ff);
    border: 1px solid #d8b4fe;
}

.stat-card.orange {
    background: linear-gradient(135deg, #fff7ed, #fed7aa);
    border: 1px solid #fdba74;
}

.stat-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.stat-icon i {
    font-size: 1.5rem;
    padding: 0.75rem;
    border-radius: 50%;
    color: white;
}

.stat-card.blue .stat-icon i {
    background: #2563eb;
}

.stat-card.green .stat-icon i {
    background: #16a34a;
}

.stat-card.purple .stat-icon i {
    background: #7c3aed;
}

.stat-card.orange .stat-icon i {
    background: #ea580c;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card.blue .stat-number {
    color: #2563eb;
}

.stat-card.green .stat-number {
    color: #16a34a;
}

.stat-card.purple .stat-number {
    color: #7c3aed;
}

.stat-card.orange .stat-number {
    color: #ea580c;
}

.stat-label {
    color: #64748b;
    font-size: 0.875rem;
}

/* Members Grid */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.member-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

/*.member-card:hover {*/
/*    transform: translateY(-4px);*/
/*    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);*/
/*}*/

.member-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    /*background: linear-gradient(to right, #2563eb, #7c3aed, #16a34a);*/
    background: #2563eb;
}

.member-content {
    padding: 1.5rem;
    text-align: center;
}

.member-avatar {
    position: relative;
    margin-bottom: 1rem;
}

.avatar {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    /*background: linear-gradient(135deg, #2563eb, #16a34a);*/
    background: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto;
}

/*.member-card:hover .avatar {*/
/*    border-color: #bfdbfe;*/
/*}*/

.member-number {
    position: absolute;
    bottom: -0.5rem;
    right: -0.5rem;
    background: white;
    border-radius: 50%;
    padding: 0.25rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.member-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

/*.member-card:hover .member-name {*/
/*    color: #2563eb;*/
/*}*/

.member-role {
    margin-bottom: 0.75rem;
}

.member-affiliation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
}

/* Location Info Grid */
.location-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #64748b;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.direction-item {
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.direction-item.blue {
    background: linear-gradient(to right, #eff6ff, #dbeafe);
}

.direction-item.green {
    background: linear-gradient(to right, #f0fdf4, #dcfce7);
}

.direction-title {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.direction-item.blue .direction-title {
    color: #1d4ed8;
}

.direction-item.green .direction-title {
    color: #15803d;
}

.direction-desc {
    font-size: 0.875rem;
}

.direction-item.blue .direction-desc {
    color: #2563eb;
}

.direction-item.green .direction-desc {
    color: #16a34a;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 0 0 0.5rem 0.5rem;
    overflow: hidden;
}

.map-container iframe {
    transition: all 0.3s ease;
}

.map-container iframe:hover {
    filter: brightness(1.1);
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.partner-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

/*.partner-card:hover {*/
/*    transform: translateY(-4px);*/
/*    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);*/
/*}*/

.partner-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    /*background: linear-gradient(to right, #dc2626, #2563eb, #1e40af);*/
    background: #2563eb;
}

.partner-header {
    padding: 1.5rem 1.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.partner-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    /*background: linear-gradient(135deg, #2563eb, #dc2626);*/
    background: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

/*.partner-card:hover .partner-avatar {*/
/*    border-color: #bfdbfe;*/
/*}*/

.partner-content {
    padding: 1.5rem;
}

.partner-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    line-height: 1.4;
}

/*.partner-card:hover .partner-name {*/
/*    color: #2563eb;*/
/*}*/

.partner-description {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.partner-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Partnership Benefits */
.partnership-benefits {
    /*background: linear-gradient(to right, #eff6ff, white, #fef2f2);*/
    background: #eff6ff;
    border: 2px solid #dbeafe;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.benefit-icon.blue {
    background: #dbeafe;
    color: #2563eb;
}

.benefit-icon.green {
    background: #dcfce7;
    color: #16a34a;
}

.benefit-icon.purple {
    background: #e9d5ff;
    color: #7c3aed;
}

.benefit-icon.red {
    background: #fee2e2;
    color: #dc2626;
}

.benefit-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #64748b;
    font-size: 0.875rem;
}

/* Logo Section */
.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .logo-section {
        flex-direction: row;
    }
}

.logo-container {
    position: relative;
    text-align: center;
    flex: 1;
}

.logo-image {
    width: 100%;
    border-radius: 0.5rem;
    border: 2px solid #d5dcff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 100%;
    height: auto;
}

.logo-image:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.logo-description {
    flex: 1;
    text-align: center;
}

@media (min-width: 1024px) {
    .logo-description {
        text-align: left;
    }
}

.logo-text {
    color: #64748b;
    line-height: 1.6;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.logo-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .logo-badges {
        justify-content: flex-start;
    }
}

/* Colors Grid */
.colors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.color-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.color-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.color-content {
    padding: 1.5rem;
    text-align: center;
}

.color-circle {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.color-card:hover .color-circle {
    transform: scale(1.1);
}

.color-name {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.color-hex {
    font-family: "Courier New", monospace;
    margin-bottom: 0.75rem;
}

.color-description {
    color: #64748b;
    font-size: 0.875rem;
    text-align: center;
}

/* Typography */
.typography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.typography-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.typography-card.blue-bg {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.typography-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.noto-sans {
    font-family: "Noto Sans KR", sans-serif;
}

.sample-large {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sample-medium {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.sample-korean {
    font-size: 1.5rem;
    font-weight: 600;
}

.typography-usage {
    padding: 1rem;
    background: linear-gradient(to right, #fff7ed, #fefce8);
    border-radius: 0.5rem;
    border: 1px solid #fed7aa;
}

.usage-text {
    color: #64748b;
    line-height: 1.6;
}

/* Guidelines */
.guidelines {
    background: linear-gradient(to right, #f8fafc, white, #f8fafc);
    border: 2px solid #e2e8f0;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.guideline-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.guideline-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.guideline-icon.green {
    background: #dcfce7;
    color: #16a34a;
}

.guideline-icon.red {
    background: #fee2e2;
    color: #dc2626;
}

.guideline-icon.blue {
    background: #e2eafe;
    color: #2644dc;
}

.guideline-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.guideline-item p {
    color: #64748b;
    font-size: 0.875rem;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.badge.blue {
    background: #dbeafe;
    color: #1d4ed8;
}

.badge.green {
    background: #dcfce7;
    color: #15803d;
}

.badge.purple {
    background: #e9d5ff;
    color: #6b21a8;
}

.badge.pink {
    background: #fce7f3;
    color: #be185d;
}

.badge.orange {
    background: #fed7aa;
    color: #c2410c;
}

.badge.outline {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #374151;
}

.badge.outline.blue {
    border-color: #bfdbfe;
    color: #1d4ed8;
    background: #eff6ff;
}

.badge.outline.green {
    border-color: #bbf7d0;
    color: #15803d;
    background: #f0fdf4;
}

.badge.outline.purple {
    border-color: #d8b4fe;
    color: #6b21a8;
    background: #faf5ff;
}

.badge.outline.orange {
    border-color: #fdba74;
    color: #c2410c;
    background: #fff7ed;
}

.badge.secondary {
    background: #f1f5f9;
    color: #475569;
}

.badge.absolute {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 1rem;
    }

    .hero-section {
        padding: 1.5rem;
    }

    .stats-grid.four-cols {
        grid-template-columns: repeat(2, 1fr);
    }

    .members-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .typography-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid.four-cols {
        grid-template-columns: 1fr;
    }

    .card-content {
        padding: 1rem;
    }
}
