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

/* General Button Styling */
.button {
    display: inline-block;
    margin: 1rem 1rem 0 0;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    color: #ffffff;
    background-color: #7b1fa2;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
}

.button:hover {
    background-color: #9c27b0;
    transform: scale(1.05);
}


/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom right, #1a1a1a, #2c2c2c);
    color: #f0f0f0;
    padding: 2rem;
    line-height: 1.6;
    text-align: center;
    padding-bottom: 100px; /* 👈 reserve space for the fixed bar */
}

h1 {
    font-size: 3rem;
    color: #5dff4e;
    text-align: center;
    margin-bottom: 2rem;
}

@media (max-width: 700px) {
    h1 {
    font-size: 2rem;
    color: #5dff4e;
    text-align: center;
    margin-bottom: 2rem;
}
}

a {
    display: inline-block;
    margin: 1rem;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

a i {
    margin-right: 0.6rem;
}

/* Specific Social Button Styling */
a[href*="t.me"] {
    background-color: #0088cc;
}

a[href*="discord.gg"] {
    background-color: #5865f2;
}

a[href*="t.me"]:hover,
a[href*="discord.gg"]:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Team Section */
.team-member {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem auto; /* Changed from margin-bottom to margin for vertical and horizontal centering */
    background-color: #ffffff0f;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-align: left;
    max-width: 700px;
}

.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #75ff70;
}

.team-info {
    flex: 1;
}

.team-info h2 {
    font-size: 1.8rem;
    color: #bd4bff;
    margin-bottom: 0.2rem;
}

@media (max-width: 700px) {
    .team-info h2 {
    font-size: 1.8rem;
    color: #bd4bff;
    margin-bottom: 0.2rem;
    }
}

.team-info h3 {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 0.5rem;
}

.team-info p {
    font-size: 1rem;
    color: #ccc;
}

/* Event Box */
.event-box {
    background-color: #ffffff10;
    padding: 1.5rem 2rem;
    margin: 2rem auto;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.event-box h2 {
    color: #bd4bff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

@media (max-width: 700px) {
    .event-box h2 {
        color: #bd4bff;
        margin-bottom: 1rem;
        font-size: 1.4rem;
    }
}

.event-box p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #eee;
}

.map-container {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Navigation Links */
.nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.nav-links a {
    background-color: #333;
    color: #ddd;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
}

.nav-links a:hover {
    background-color: #555;
}

/* Responsive Team Layout */
@media (max-width: 700px) {
    .team-member {
        flex-direction: column;
        text-align: center;
    }

    .team-info {
        text-align: center;
    }
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background-color: #ffffff10;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-section img {
    width: 350px;
    height: 350px;
    object-fit: contain;
    border-radius: 12px;
    border: 3px solid #7b1fa2;
    background-color: #fff;
    padding: 0.5rem;
}

.about-info {
    flex: 1;
    /* min-width: 280px; */
    text-align: left;
}

.about-info h2 {
    font-size: 2rem;
    color: #bd4bff;
    margin-bottom: 1rem;
}

.about-info p {
    font-size: 1.1rem;
    color: #eee;
    line-height: 1.7;
}

/* 📱 Mobile Responsiveness */
@media (max-width: 700px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }

    .about-section img {
        width: 220px;
        height: auto;
        margin-bottom: 1rem;
    }

    .about-info {
        text-align: center;
        padding: 0 0.5rem;
    }

    .about-info h2 {
        font-size: 1.6rem;
    }

    .about-info p {
        font-size: 1rem;
    }
}

/* Responsive tweaks */
@media (max-width: 700px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-info {
        text-align: center;
    }
}

p.not_nnfm {
    font-size: 1.1rem;
    color: #eee;
    line-height: 1.5;
    margin: 0; /* remove any default margin */
}

p.not_nnfm a.not_nnfm_link {
    color: #65ff28;
    text-decoration: underline;
    font-weight: 600;
    font-size: inherit;       /* same size as p */
    line-height: inherit;     /* match line height */
    margin: 0;                /* remove extra spacing */
    padding: 0;
    vertical-align: baseline; /* align with text baseline */
    display: inline;          /* ensure inline behavior */
    transition: color 0.3s ease;
}

p.not_nnfm a.not_nnfm_link:hover,
p.not_nnfm a.not_nnfm_link:focus {
    color: #9544ff;
    text-decoration: none;
    outline: none;
}

.pssst-container {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #2a2a2a;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

.pssst-container h2 {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 1.5rem;
}

.pssst-container p.not_nnfm {
    margin: 0;
    font-size: 1rem;
    color: #eee;
}

.pssst-container a.not_nnfm_link {
    color: #ff70a6;
    text-decoration: underline;
    font-weight: 600;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    display: inline;
    transition: color 0.3s ease;
}

.pssst-container a.not_nnfm_link:hover {
    color: #ffffff;
    text-decoration: none;
} 
