/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FFC107; /* A warm, vibrant gold for accents */
    --secondary-color: #263238; /* A deep, professional blue-grey for main elements and text */
    --text-color: #333333; /* Standard dark grey for readability on light backgrounds */
    --light-bg: #F4F4F4; /* A clean, light grey for section backgrounds */
    --dark-bg: #263238; /* Matches the secondary color for dark sections and footer */
    --white: #FFFFFF; /* Pure white for text and elements on dark backgrounds */
    --shadow: 0 2px 5px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-align: center;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    text-align: center;
}

.section-dark {
    background-color: var(--dark-bg);
    color: var(--white);
}

.section-dark .section-title {
    color: var(--white);
}

/* Crypto Ticker */
.crypto-ticker {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 0;
    overflow: hidden;
    position: relative;
    top: 80px;
}

.ticker-content {
    display: flex;
    justify-content: space-around;
    animation: ticker 20s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 2rem;
}

.crypto-name {
    font-weight: bold;
}

.crypto-change.positive {
    color: #2ecc71;
}

.crypto-change.negative {
    color: #e74c3c;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Header and Navigation */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo h1 {
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn-login, .btn-signup {
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-login {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-signup {
    background-color: var(--primary-color);
    color: var(--white) !important;
    border: 2px solid var(--primary-color);
}

.btn-login:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-signup:hover {
    background-color: #e0a800; /* Darken gold slightly on hover */
    border-color: #e0a800;
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(38, 50, 56, 0.8), rgba(38, 50, 56, 0.8)), url('assets/hero-bg.jpg'); /* Use dark-bg with opacity */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #e0a800; /* Darken gold slightly on hover */
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Investment Plans Section */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plan-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.plan-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-price {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin: 1rem 0;
}

.plan-features {
    list-style: none;
    margin: 2rem 0;
}

.plan-features li {
    margin: 1rem 0;
}

.plan-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 5px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer p {
    padding: 1rem 0;
}

/* Workforce Section */
#workforce {
    padding: 5rem 0;
    background-color: var(--dark-bg); /* Ensure dark background */
}

#workforce .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.workforce-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.workforce-item {
    text-align: center;
}

.workforce-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.workforce-item h3 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.workforce-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* About Section */
#about {
    padding: 5rem 0;
    background-color: var(--light-bg); /* Ensure light background */
}

#about .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-content.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-sub-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-sub-section h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.about-sub-section-image {
    margin-top: 1rem;
}

.about-sub-section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Getting Started Section */
#getting-started {
    padding: 5rem 0;
    background-color: var(--dark-bg); /* Ensure dark background */
}

.getting-started-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.step i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.step p {
    color: rgba(255, 255, 255, 0.8);
}

/* Time Tested Methods Section */
#time-tested {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.time-tested-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.time-tested-image {
    flex: 1;
}

.time-tested-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.time-tested-text {
    flex: 1;
}

.time-tested-text ul {
    list-style: none;
    margin-top: 1.5rem;
}

.time-tested-text ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.time-tested-text ul li i {
    color: var(--primary-color);
}

/* Affiliate Program Section */
#affiliate-program {
    padding: 5rem 0;
    background-color: var(--dark-bg); /* Ensure dark background */
}

.affiliate-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.level i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.level h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.level p {
    color: rgba(255, 255, 255, 0.8);
}

/* Stats Section */
#stats {
    padding: 5rem 0;
    background-color: var(--light-bg); /* Ensure light background */
}

#stats .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

/* Contact Section */
#contact {
    padding: 5rem 0;
    background-color: var(--dark-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border-radius: 5px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Coin Price Marquee Widget Styling */
#coin-price-marquee {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent dark background */
    color: white;
    z-index: 999;
    padding: 0.3rem 0; /* Reduced vertical padding */
    overflow: hidden;
    height: 40px; /* Reduced height */
    display: flex; /* Use flexbox to center content vertically */
    align-items: center;
}

#coin-price-marquee .coinmarketcap-currency-widget, #coin-price-marquee #coinmarketcap-widget-marquee {
    /* The widget itself handles the marquee effect */
    /* Remove previous flex properties if they interfere with the widget's marquee */
     width: 100%; /* Ensure the widget takes full width of the container */
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 1rem;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .auth-buttons {
        margin-top: 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .about-content {
        flex-direction: column;
    }

    .about-content.reverse {
        flex-direction: column;
    }

    .time-tested-content {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section.contact {
        text-align: center;
    }

    /* Adjustments for Coin Price Marquee on Mobile */
    #coin-price-marquee {
        height: 35px; /* Slightly smaller height on mobile */
        padding: 0.2rem 0; /* Further reduce padding on mobile */
    }
}

@media (max-width: 480px) {
    /* Further adjustments for smaller mobile screens if needed */
     #coin-price-marquee {
        height: 30px; /* Even smaller height on very small mobile */
     }
} 