/* Style Dasar */
body {
    margin: 0; padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #212121;
    background-color: #FFFDE7; /* Fallback jika background.jpg tidak termuat */
}

/* Navigasi Tab Beehive */
nav {
    background: #212121;
    padding: 15px;
    display: flex;
    justify-content: center;
    border-bottom: 4px solid #FFB300;
}
nav a {
    color: #FFFDE7;
    text-decoration: none;
    padding: 10px 25px;
    margin: 0 10px;
    font-weight: bold;
    border-radius: 8px;
    background: #424242;
    border: 2px solid #FFB300;
    transition: 0.2s;
}
nav a:hover, nav a.active {
    background: #FFB300;
    color: #212121;
    box-shadow: 0px 0px 10px #FFB300;
}

/* Struktur Container */
.container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 30px;
    background: rgba(255, 253, 231, 0.95);
    border: 4px solid #212121;
    border-radius: 20px;
    box-shadow: 8px 8px 0px #212121;
}

h1, h2, h3 {
    color: #E65100;
    text-align: center;
}

/* Desain Kartu Anggota Hexagonal */
.team-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 40px 0;
}
.member-card {
    text-align: center;
    margin: 15px;
    width: 180px;
}
.hexagon {
    width: 150px;
    height: 150px;
    background: #FFB300;
    margin: 0 auto 15px auto;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid #212121;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.hexagon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.hexagon:hover {
    transform: scale(1.2);
}
.member-card p {
    font-weight: bold;
    font-size: 14px;
    background: #212121;
    color: #FFF;
    padding: 5px 10px;
    border-radius: 20px;
    border: 2px solid #FFB300;
}

/* Footer & Media Sosial */
footer {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    border-top: 2px dashed #212121;
}
.social-icons a {
    display: inline-block;
    margin: 0 15px;
    transition: transform 0.2s;
}
.social-icons a:hover {
    transform: scale(1.2);
}
.social-icons img {
    width: 40px;
    height: 40px;
}
