/* 字體庫 */
/* 標題 */
@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;
}

.about-us {
    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;
}

.group-photo-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.group-photo {
    width: 100%;
    height: 125%;
    background-image: url("https://i.meee.com.tw/R3OuCGN.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.features {
    padding: 30px;
}

.features h2 {
    color: #489644;
    text-align: center;
    margin-bottom: 30px;
    font-family: "Klee One", cursive;
    font-size: 32px;
}

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

.feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 5px;
}

.feature-item h3 {
    color: #487598 ;
    margin-bottom: 10px;
    font-family: "Klee One", cursive;
}

.feature-item  {
    font-family: "Kiwi Maru", serif;
}

.past-websites {
    padding: 30px;
    background-color: rgba(66, 66, 66, 0.1);
}

.past-websites h3 {
    color: #487598 ;
    margin-bottom: 15px;
    font-family: "Klee One", cursive;
}

.past-websites ul {
    list-style-type: none;
    padding: 0;
}

.past-websites li {
    margin-bottom: 10px;
}

.past-websites a {
    color: #fff;
    text-decoration: none;
}

.past-websites a:hover {
    text-decoration: underline;
}

.club-intro {
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.219);
    margin-bottom: 20px;
}

.club-intro h2 {
    color: #489644;
    text-align: center;
    margin-bottom: 20px;
    font-family: "Klee One", cursive;
    font-size: 32px;
}

.club-intro p {
    font-family: "Kiwi Maru", serif;
    text-align: justify;
    line-height: 1.8;
}

.slogan {
    padding: 40px 30px;
    background-color: rgba(0, 0, 0, 0.2); 
    text-align: center;
    margin: 20px 0;
}

.slogan h2 {
    color: #9EC9B3 ;
    font-family: "Klee One", cursive;
    font-size: 28px;
    margin-bottom: 15px;
}

.slogan p {
    font-family: "Kiwi Maru", serif;
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    line-height: 1.4;
}

.features, .club-intro, .past-websites {
    margin-bottom: 20px;
}

.features h2, .past-websites h3 {
    color: #489644;
}

.feature-item h3 {
    color: #487598;
}

/* 響應式設計 */

@media screen and (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .guide {
        margin: 80px 0 30px;
    }

    .group-photo-container {
        height: 300px;
    }

    .features h2, .club-intro h2 {
        font-size: 28px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .slogan h2 {
        font-size: 24px;
    }

    .slogan p {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .guide {
        margin: 60px 0 20px;
    }

    .group-photo-container {
        height: 200px;
    }

    .features, .club-intro, .past-websites {
        padding: 20px;
    }

    .features h2, .club-intro h2 {
        font-size: 24px;
    }

    .feature-item h3 {
        font-size: 18px;
    }

    .slogan {
        padding: 30px 20px;
    }

    .slogan h2 {
        font-size: 22px;
    }

    .slogan p {
        font-size: 18px;
    }
}