/* ===== Global ===== */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #050B08; /* Deeper forest black-green */
    color: #d4efe3;
    scroll-behavior: smooth;
}

/* Fade Animations */
.fade-in {
    animation: fadeIn 1.2s ease forwards;
}
.fade-section {
    opacity: 0;
    animation: fadeUp 1.2s ease forwards;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px);} to { opacity: 1; transform: translateY(0);} }

/* ===== Rolling Bar ===== */
.rolling-bar {
    width: 100%;
    background: linear-gradient(to right, #050B08, #0C1A14, #050B08);
    border-bottom: 2px solid #2fa76b;
    color: #adffd2;
    height: 32px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.rolling-text {
    white-space: nowrap;
    padding-left: 100%;
    animation: roll 20s linear infinite;
}
@keyframes roll { from { transform: translateX(0);} to { transform: translateX(-100%);} }

/* ===== Header ===== */
header {
    position: sticky;
    top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 20, 15, 0.9);
    backdrop-filter: blur(12px);
    padding: 18px 34px;
    border-bottom: 2px solid #2fa76b;
    z-index: 900;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #3ce48a;
}

nav a {
    color: #8bd9b2;
    margin: 0 14px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

nav a:hover,
nav a.active {
    color: #3ce48a;
}

.journal-btn {
    background: #22754b;
    padding: 7px 16px;
    border-radius: 7px;
    color: white !important;
    transition: background-color .3s;
}

.journal-btn:hover {
    background: #2da36b;
}

/* ===== Hero (No Image) ===== */
.hero {
    height: 40vh;
    background: radial-gradient(circle at top, #0F1E18, #050B08);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.hero-overlay {
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 12px;
    color: #b4f8d5;
}

.hero p {
    font-size: 1.2rem;
    color: #d8f9eb;
    opacity: 0.9;
}

.hero-btn {
    margin-top: 22px;
    background: #22754b;
    padding: 12px 26px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #2da36b;
}

/* ===== Sections ===== */
section {
    max-width: 1150px;
    padding: 55px 25px;
    margin: auto;
}

h2 {
    color: #9be7c8;
    border-bottom: 2px solid #2fa76b;
    padding-bottom: 8px;
    text-align: center;
    margin-bottom: 35px;
}

/* ===== Grids ===== */
.video-grid,
.photo-grid,
.trip-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

iframe {
    width: 100%;
    height: 240px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.55);
}

/* ===== Trip Cards ===== */
.trip-card {
    background: #0C1A14;
    border-radius: 12px;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.trip-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.75);
}

.trip-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.trip-info {
    padding: 18px;
}

.trip-info h3 {
    margin: 0;
    color: #9be7c8;
}

/* ===== Footer ===== */
footer {
    background: #0C1A14;
    color: #8bd9b2;
    border-top: 2px solid #2fa76b;
    padding: 28px;
    text-align: center;
}

footer a {
    color: #3ce48a;
    text-decoration: none;
}

/* ===== Mobile Nav ===== */
.menu-toggle {
    color: #9be7c8;
    display: none;
    font-size: 1.7rem;
}

@media (max-width: 760px) {
    nav {
        display: none;
        flex-direction: column;
        background: #07100C;
        border-left: 2px solid #2fa76b;
        border-bottom: 2px solid #2fa76b;
        width: 210px;
        position: absolute;
        top: 80px;
        right: 0;
        padding: 20px;
    }

    nav.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        height: 55vh;
    }
}
.server-icon {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin-bottom: 15px;
}
/* ===== Footer (Updated for Index & Minecraft) ===== */
footer {
    background: #07100C; /* slightly darker for distinction */
    color: #8bd9b2;
    border-top: 2px solid #2fa76b;
    padding: 28px 20px;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.6;
}

footer .footer-content {
    max-width: 1100px;
    margin: auto;
}

footer p {
    margin: 6px 0;
}

footer a {
    color: #3ce48a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #b4f8d5;
}

/* Optional small icon row inside footer for future expansion */
footer .footer-icons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

footer .footer-icons img {
    width: 28px;
    height: 28px;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

footer .footer-icons img:hover {
    filter: brightness(1.2);
}
/* ===== Global ===== */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #050B08;
    color: #d4efe3;
    scroll-behavior: smooth;
}

/* Fade Animations */
.fade-in {
    animation: fadeIn 1.2s ease forwards;
}

.fade-section {
    opacity: 0;
    animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Page Container ===== */
.about-container {
    max-width: 1150px;
    margin: auto;
    padding: 60px 25px;
}

/* ===== Header Section ===== */
.about-header h1 {
    font-size: 3rem;
    color: #b4f8d5;
    text-align: center;
    margin-bottom: 16px;
}

.about-header p {
    font-size: 1.15rem;
    color: #d8f9eb;
    opacity: 0.85;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

/* ===== Team Section ===== */
.team-section {
    margin-top: 60px;
}

.team-section h2 {
    color: #9be7c8;
    text-align: center;
    font-size: 2.2rem;
    border-bottom: 2px solid #2fa76b;
    padding-bottom: 10px;
    margin-bottom: 40px;
}

/* ===== Grid Layout ===== */
.team-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* ===== Team Member Card ===== */
.team-member {
    background: #0C1A14;
    border-radius: 14px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.55);
    border: 2px solid transparent;
    transition: 0.35s ease;
}

.team-member:hover {
    transform: translateY(-7px);
    border-color: #2fa76b;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.75);
}

/* Member Image */
.team-member img {
    width: 125px;
    height: 125px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid #3ce48a;
    margin-bottom: 18px;
    box-shadow: 0 0 12px rgba(60, 228, 138, 0.35);
}

/* Member Name */
.team-member h3 {
    margin: 0;
    color: #9be7c8;
    font-size: 1.3rem;
}

/* Member Role */
.team-member p {
    margin-top: 8px;
    color: #b7f2db;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
    .about-header h1 {
        font-size: 2.4rem;
    }

    .team-member img {
        width: 110px;
        height: 110px;
    }
}
/* ===== Global ===== */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #050B08;
    color: #d4efe3;
    scroll-behavior: smooth;
}

/* ===== Fade Animations ===== */
.fade-in { animation: fadeIn 1.2s ease forwards; }
.fade-section { opacity: 0; animation: fadeUp 1.2s ease forwards; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px);} to { opacity: 1; transform: translateY(0);} }

/* ===== Rolling Bar ===== */
.rolling-bar {
    width: 100%;
    background: linear-gradient(to right, #050B08, #0C1A14, #050B08);
    border-bottom: 2px solid #2fa76b;
    color: #adffd2;
    height: 32px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: fixed;
    top: 0;
    z-index: 1000;
}
.rolling-text { white-space: nowrap; padding-left: 100%; animation: roll 20s linear infinite; }
@keyframes roll { from { transform: translateX(0);} to { transform: translateX(-100%);} }

/* ===== Header ===== */
header {
    position: sticky;
    top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 20, 15, 0.9);
    backdrop-filter: blur(12px);
    padding: 18px 34px;
    border-bottom: 2px solid #2fa76b;
    z-index: 900;
}
.logo { font-size: 1.75rem; font-weight: 700; color: #3ce48a; }
nav a { color: #8bd9b2; margin: 0 14px; text-decoration: none; font-weight: 600; transition: 0.3s ease; }
nav a:hover, nav a.active { color: #3ce48a; }
.journal-btn { background: #22754b; padding: 7px 16px; border-radius: 7px; color: white !important; transition: background-color .3s; }
.journal-btn:hover { background: #2da36b; }

/* ===== Hero ===== */
.hero {
    height: 40vh;
    background: radial-gradient(circle at top, #0F1E18, #050B08);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}
.hero-overlay { text-align: center; }
.hero h1 { font-size: 3rem; margin-bottom: 12px; color: #b4f8d5; }
.hero p { font-size: 1.2rem; color: #d8f9eb; opacity: 0.9; }

/* ===== Sections ===== */
section { max-width: 1150px; padding: 55px 25px; margin: auto; }
h2 { color: #9be7c8; border-bottom: 2px solid #2fa76b; padding-bottom: 8px; text-align: center; margin-bottom: 35px; }

/* ===== Team Grid ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 25px;
}
.team-member {
    text-align: center;
    background: #0C1A14;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.6);
    transition: transform 0.3s, box-shadow 0.3s;
}
.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.75);
}
.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* ===== Social Media Section ===== */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}
.social-icons img {
    width: 50px;
    height: 50px;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}
.social-icons img:hover { filter: brightness(1.2); }

/* ===== Contact Section ===== */
#contact p { text-align: center; margin: 8px 0; }

/* ===== Footer ===== */
footer {
    background: #07100C;
    color: #8bd9b2;
    border-top: 2px solid #2fa76b;
    padding: 28px 20px;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.6;
}
footer .footer-content { max-width: 1100px; margin: auto; }
footer p { margin: 6px 0; }
footer a { color: #3ce48a; text-decoration: none; font-weight: 600; transition: color 0.3s ease; }
footer a:hover { color: #b4f8d5; }

/* ===== Mobile Nav ===== */
.menu-toggle { color: #9be7c8; display: none; font-size: 1.7rem; }
@media (max-width: 760px) {
    nav { display: none; flex-direction: column; background: #07100C; border-left: 2px solid #2fa76b; border-bottom: 2px solid #2fa76b; width: 210px; position: absolute; top: 80px; right: 0; padding: 20px; }
    nav.show { display: flex; }
    .menu-toggle { display: block; }
    .hero { height: 55vh; }
}
