:root {
    --primary-color: #FDFD96;
    /* Pastel Yellow */
    --secondary-color: #87CEEB;
    /* Sky Blue */
    --accent-color: #98FB98;
    /* Pale Green */
    --text-color: #4A4A4A;
    /* Dark Gray */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Cinzel', serif;
}

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

body {
    font-family: var(--font-main);
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('assets/bg.png') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
header {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.2);
    /* Darker header */
    backdrop-filter: blur(10px);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    padding-top: 80px;
    overflow: hidden;
    /* Prevent scrollbars from floating elements */
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 2rem;
}

.hero-side {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-content {
    flex: 1.5;
    text-align: center;
    z-index: 10;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    /* Optional: rounded corners for images */
    box-shadow: 0 0 30px rgba(253, 253, 150, 0.3);
    /* Soft glow */
}

.floating-slow {
    animation: float 6s ease-in-out infinite;
    width: 250px;
}

.floating-fast {
    animation: float 5s ease-in-out infinite reverse;
    width: 280px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin: 1rem 0;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5), 0 0 20px var(--primary-color);
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #eee;
    font-style: italic;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Mobile Responsiveness moved to end of file */

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    margin: 0.5rem;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn.primary {
    background: var(--primary-color);
    color: #5a5a30;
    box-shadow: 0 4px 15px rgba(253, 253, 150, 0.4);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    backdrop-filter: blur(5px);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn.small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin: 0.2rem;
}

.lang-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* About Section */
#about {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    text-align: center;
    position: relative;
    z-index: 1;
}

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

h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #5a5a30;
    /* Darker yellow/brown */
}

p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.8;
}

.scripture-quote {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    color: #5a5a30;
    padding: 3rem;
    margin: 3rem auto;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    max-width: 900px;
    box-shadow: 0 10px 30px rgba(253, 253, 150, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    text-align: center;
}

.scripture-quote::before {
    content: '"';
    font-family: serif;
    font-size: 10rem;
    position: absolute;
    top: -2rem;
    left: 1rem;
    color: rgba(253, 253, 150, 0.5);
    z-index: -1;
    line-height: 1;
}

.scripture-quote::after {
    content: '"';
    font-family: serif;
    font-size: 10rem;
    position: absolute;
    bottom: -6rem;
    right: 1rem;
    color: rgba(253, 253, 150, 0.5);
    z-index: -1;
    line-height: 1;
}

/* Documents Preview Section */
#documents-preview {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.docs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto;
}

.doc-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.doc-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    /* Highlight text on hover */
}

.doc-icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
}

.doc-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    color: #333;
}

.doc-info span {
    font-size: 0.9rem;
    color: #666;
}

.arrow {
    margin-left: auto;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ccc;
}

.doc-item:hover .arrow {
    color: var(--primary-color);
}

/* Tokenomics Section */
#tokenomics {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.token-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.token-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border: 2px solid var(--primary-color);
}

.token-card:hover {
    transform: translateY(-10px);
}

.token-card h3 {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.token-card p {
    font-weight: bold;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.token-card span {
    color: #888;
    font-size: 1rem;
}

/* Offering Section */
.offering-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.offering-card p {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #5a5a30;
    line-height: 1.6;
    font-style: italic;
}

/* Roadmap Section */
#roadmap {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    text-align: center;
}

.roadmap-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.roadmap-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    z-index: 0;
}

.roadmap-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.phase {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.roadmap-item h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.roadmap-item ul {
    text-align: left;
    padding-left: 2rem;
    display: inline-block;
}

.roadmap-item li {
    list-style-type: disc;
    margin-bottom: 0.5rem;
    color: #555;
}

/* How to Buy Section */
#how-to-buy {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05);
    font-family: var(--font-heading);
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.ca-box {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ca-input-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.ca-input-group input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: monospace;
    font-size: 1rem;
    background: #f9f9f9;
}

.ca-input-group button {
    margin: 0;
}

/* Footer */
footer {
    padding: 4rem 2rem;
    background: #333;
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-icon {
    font-weight: bold;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--primary-color);
}

.copyright {
    color: #888;
    margin-bottom: 0.5rem;
}

.disclaimer {
    color: #666;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    /* Typography */
    html {
        font-size: 14px;
        /* Base font size reduction */
    }

    body {
        /* Re-declare background to force scroll and top alignment */
        background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('assets/bg.png') no-repeat top center scroll !important;
        background-size: cover !important;
        height: 100vh;
        /* Fallback */
        min-height: 100vh;
    }

    h1 {
        font-size: 2.5rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }

    p {
        font-size: 1rem !important;
    }

    /* Header & Nav */
    header {
        padding: 10px 20px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.5);
        /* Darker for readability */
    }

    .nav-links {
        gap: 15px;
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    /* Sections */
    section,
    #about,
    #documents-preview,
    #tokenomics,
    #roadmap,
    #how-to-buy {
        padding: 3rem 1rem !important;
    }

    .container {
        padding: 0 1rem;
    }

    /* Hero */
    #hero {
        padding-top: 120px;
        /* Space for taller header */
        min-height: auto;
        /* Allow content to dictate height */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-content {
        order: 1;
        /* Text first */
        margin: 2rem 0;
    }

    .hero-side.left {
        display: none;
        /* Hide symbol on mobile */
    }

    .hero-side.right {
        order: 2;
        /* Image second */
        margin-bottom: 2rem;
    }

    .hero-img {
        width: 200px;
        /* Adjust size if needed for goddessM */
        margin: 1rem 0;
    }

    /* Cards & Quotes */
    .scripture-quote {
        padding: 1.5rem;
        margin: 2rem auto;
        font-size: 1.2rem;
    }

    .scripture-quote::before,
    .scripture-quote::after {
        font-size: 5rem;
        /* Smaller quotes */
    }

    .scripture-quote::before {
        top: -1rem;
    }

    .scripture-quote::after {
        bottom: -3rem;
    }

    .offering-card {
        padding: 1.5rem;
    }

    .offering-card p {
        font-size: 1.2rem;
    }

    /* Tokenomics & Roadmap */
    .token-card {
        width: 100%;
        /* Full width on mobile */
    }

    .token-card h3 {
        font-size: 2.5rem !important;
    }

    .roadmap-container::before {
        left: 20px;
        /* Move line to left */
    }

    .roadmap-item {
        margin-left: 30px;
        /* Space for line */
        text-align: left;
    }

    /* How to Buy */
    .step-number {
        font-size: 4rem;
    }

    .ca-input-group {
        flex-direction: column;
    }

    .ca-input-group input {
        width: 100%;
    }

    .ca-input-group button {
        width: 100%;
    }
}