/* 字體庫 */
/* 標題 */
@import url('https://fonts.googleapis.com/css2?family=Klee+One&display=swap');
/* font-family: "Klee One", cursive; */
/* 內文 */
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru&display=swap');
/* font-family: "Kiwi Maru", serif; */

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

a {
    text-decoration: none;
    color: #fff;
    font-family: "Kiwi Maru", serif;
}

a:hover {
    text-decoration: underline;
}

.organization {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    padding: 40px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.guide {
    align-self: flex-start;
    margin: 130px 0 50px;
}

.content-wrapper {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    overflow: hidden;
    color: #fff;
    margin-bottom: 50px;
    padding: 30px;
}

/* 社團章程樣式 */
.charter h2 {
    font-family: "Klee One", cursive;
    font-size: 2rem;
    margin-bottom: 30px;
    border-bottom: 2px solid #4285f4;
    padding-bottom: 10px;
    color: #fff;
}

.charter-content {
    font-family: "Kiwi Maru", serif;
    margin-bottom: 30px;
}

.charter-content h3 {
    color: #4285f4;
    margin: 20px 0 10px;
    font-size: 1.4rem;
    font-family: "Klee One", cursive;
}

.charter-content p, .charter-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.charter-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

/* 幹部列表樣式 */
.cadre-list h2 {
    font-family: "Klee One", cursive;
    font-size: 2rem;
    margin-bottom: 30px;
    border-bottom: 2px solid #4285f4;
    padding-bottom: 10px;
    color: #fff;
}

.cadre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.cadre-card {
    background-color: rgba(66, 133, 244, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cadre-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.cadre-photo {
    height: 200px;
    background-color: #333;
    background-size: cover;
    background-position: center;
}

/* 預設幹部照片背景 - 使用漸層色彩直到有實際照片 */
.president {
    background-image: linear-gradient(135deg, #4285f4 0%, #0d47a1 100%);
    position: relative;
}
.president::after {
    content: "社長";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Klee One", cursive;
    font-size: 28px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.vice-president {
    background-image: linear-gradient(135deg, #34a853 0%, #1b5e20 100%);
    position: relative;
}
.vice-president::after {
    content: "副社長";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Klee One", cursive;
    font-size: 28px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.teaching-director {
    background-image: linear-gradient(135deg, #ea4335 0%, #b71c1c 100%);
    position: relative;
}
.teaching-director::after {
    content: "教學長";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Klee One", cursive;
    font-size: 28px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.treasurer {
    background-image: linear-gradient(135deg, #fbbc05 0%, #f57f17 100%);
    position: relative;
}
.treasurer::after {
    content: "總務";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Klee One", cursive;
    font-size: 28px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.art-director {
    background-image: linear-gradient(135deg, #9c27b0 0%, #4a148c 100%);
    position: relative;
}
.art-director::after {
    content: "美宣";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Klee One", cursive;
    font-size: 28px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.webmaster {
    background-image: linear-gradient(135deg, #00bcd4 0%, #006064 100%);
    position: relative;
}
.webmaster::after {
    content: "網管";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Klee One", cursive;
    font-size: 28px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.cadre-info {
    padding: 20px;
}

.cadre-info h3 {
    font-family: "Klee One", cursive;
    color: #4285f4;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.cadre-name {
    font-family: "Kiwi Maru", serif;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.cadre-class {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.cadre-intro {
    font-family: "Kiwi Maru", serif;
    line-height: 1.6;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .cadre-grid {
        grid-template-columns: 1fr;
    }
    
    .content-wrapper {
        padding: 20px;
    }
}
