
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
}
, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 2rem; /* Adjusted size */
}

h2 {
    font-size: 1.75rem; /* Adjusted size */
}

h3 {
    font-size: 1.5rem; /* Adjusted size */
}

h4 {
    font-size: 1.25rem; /* Adjusted size */
}

h5 {
    font-size: 1rem; /* Adjusted size */
}

h6 {
    font-size: 0.875rem; /* Adjusted size */
}

/* Keep all other styles unchanged */
:root {
    --primary-color: #bd9696;
    --background-color: #1a1a1a;
    --header-bg: #0a0a09;
    --text-white: #ffffff;
    --border-color: #555555;
    --link-color: #ffffff;
    --font-body: 'Poppins', sans-serif;
    --font-header: 'Poppins', serif;
}
body {
    background-color: var(--background-color);
    color: var(--primary-color);
    font-family: var(--font-body);
    text-align: center;
    margin: 0;
    padding: 0;
}
header {
    display: flex;
    justify-content: center; /* Ensures everything is centered */
    align-items: center;
    background-color: var(--header-bg);
    padding: 20px 0; /* Keep vertical padding, but remove horizontal padding */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    width: 100px;
    height: 100px;
    display: block;
}
.hero {
    position: relative;
    background: url('bg.jpg') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 100px; /* Offset for fixed header */
}
.hero-logo {
    position: relative;
    width: 300px;
}
.hero-text {
    position: relative;
    font-size: 1.5rem;
}
.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    animation: bounce 1.5s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) rotate(-45deg) translateY(0);
    }
    40% {
        transform: translateX(-50%) rotate(-45deg) translateY(10px);
    }
    60% {
        transform: translateX(-50%) rotate(-45deg) translateY(5px);
    }
}
.roadmap {
    padding: 50px;
    text-align: left;
    margin-top: 20px;
}
.roadmap h2 {
    font-family: var(--font-header);
    text-align: center;
    color: var(--text-white);
}
.roadmap-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.roadmap-card {
    background: #2a2a2a;
    color: white;
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 10px;
    border-radius: 8px;
    width: 80%;
}
.roadmap-card img {
    width: 300px;
    height: 300px;
    margin-right: 20px;
}
.roadmap-card .content {
    flex: 1;
}
@media (max-width: 768px) {
    .roadmap-card {
        flex-direction: column;
        width: 100%;
        padding: 30px;
    }

    .roadmap-card img {
        width: 300px; /* Keep the same size */
        height: 300px;
        display: block;
        margin: 0 auto 15px auto; /* Centers the image */
    }

    .roadmap-card .content {
        text-align: center;
    }
}
footer {
    padding: 20px;
    font-size: 14px;
    color: var(--text-white);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.social-icons img {
    width: 40px;
    height: 40px;
}

.project-description {
    background-color: #2A2A2A; /* Same grey as roadmap cards */
    color: var(--text-white); /* White text */
    padding: 40px 20px;
    text-align: center;
}

.project-description .container {
    max-width: 800px;
    margin: 0 auto;
}

.project-description h2 {
    font-family: var(--font-header);
    font-size: 2rem;
    margin-bottom: 15px;
}

.project-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}


.project-description {
    background-color: #2A2A2A; /* Same grey as roadmap cards */
    color: var(--text-white); /* White text */
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.project-description .container {
    max-width: 800px;
    text-align: left; /* Ensure text is left-aligned */
}


.project-description h2 {
    text-align: center; /* Center only the title */
}


.unlock-secrets {
    background-color: #2A2A2A; /* Same as Roadmap and Project Description */
    color: var(--text-white); /* White text */
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.unlock-secrets .container {
    max-width: 800px;
    text-align: left; /* Ensure text is left-aligned */
}

.unlock-secrets h2 {
    text-align: center; /* Center only the title */
}


.project-description h2, .unlock-secrets h2 {
    font-family: 'Poppins', serif; /* Ensure both sections use this font for the header */
    text-align: center; /* Center only the header */
}

.project-description, .unlock-secrets {
    background-color: #2A2A2A; /* Consistent background color */
    color: var(--text-white); /* White text */
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.project-description .container, .unlock-secrets .container {
    max-width: 800px;
    text-align: left; /* Ensure text is left-aligned */
}


.project-description h2, .roadmap h2, .unlock-secrets h2 {
    font-family: 'Poppins', serif; /* Ensure consistent font */
    text-align: center; /* Center all headers */
    font-size: 2.5rem; /* Ensure consistent size across all sections */
}


/* Ensure all headers are the same smaller size */
.project-description h2, .unlock-secrets h2, .roadmap h2 {
    font-family: 'Poppins', serif; /* Ensure consistent font */
    text-align: center; /* Center all headers */
    font-size: 2rem; /* Reduce size slightly */
    color: var(--text-white); /* Ensure white text */
}

/* Ensure font loads correctly on mobile */
@font-face {
    font-family: 'Poppins';
    src: url('Poppins.ttf') format('truetype');
    font-display: swap;
}

/* Apply Poppins to all headers globally */
h2 {
    font-family: 'Poppins', serif !important;
}

/* Ensure text consistency for new sections */
.project-description p, .unlock-secrets p {
    font-family: var(--font-body); /* Ensure same body font as Roadmap and cards */
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-white); /* Ensure white text */
}


@media screen and (max-width: 768px) {
    header {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    header img {
        max-width: 100%;
        height: auto;
    }
}

/* Fix Safari Bold Text Issue */
@supports (-webkit-touch-callout: none) {
    body, p, .hero-text { font-weight: 400 !important; }
    h1, h2, h3, h4, h5, h6 { font-weight: 700 !important; }
}

/* Ensure footer icons are white, 15x15px, and properly spaced */
.social-icons a img {
    width: 15px !important;
    height: 15px !important;
    filter: invert(1); /* Ensures icons appear white */
    margin: 0 10px; /* Adds spacing between icons */
}

@keyframes glow-pulse {
    0% {
        text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0px 0px 12px rgba(255, 255, 255, 0.9);
    }
    100% {
        text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.5);
    }
}

.bold-link a {
    color: white; /* Ensures text is white */
    font-weight: bold;
    text-decoration: none;
    position: relative;
    animation: glow-pulse 2s infinite ease-in-out; /* Pulsating glow effect */
}


a {
    color: #FFFFFF !important; /* Force white color */
    font-weight: bold; /* Make text bold */
    text-decoration: none; /* Remove default underline */
}

a:hover {
    text-decoration: underline; /* Show underline on hover */
}
