@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --accent-color: #00ff00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    font-size: 2rem;
    font-weight: bold;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
}

h1 {
    font-size: 1.5rem;
}

nav ul {
    display: flex;
    list-style-type: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-color);
}

#menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

main {
    padding: 8rem 5% 4rem;
}

#home {
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

footer {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style-type: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.social-icons a {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media screen and (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 1rem;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 1rem 0;
    }

    #menu-toggle {
        display: block;
    }
}

#about {
    padding: 4rem 5%;
    background-color: rgba(255, 255, 255, 0.05);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.about-text {
    flex: 1;
    min-width: 300px;
    margin-right: 2rem;
}

.about-text h2 {
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
}

.about-text ul {
    list-style-type: none;
    margin-bottom: 1rem;
}

.about-text ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-text ul li::before {
    content: "\f0a9";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.about-logo {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    position: relative;
    width: 200px;
    height: 200px;
}

.logo-circle {
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.logo-circle::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background-color: var(--primary-color);
    transform: rotate(45deg);
    top: -10%;
    left: -10%;
}

.logo-s {
    font-size: 6rem;
    font-weight: bold;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.logo-name {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 1rem;
    text-align: center;
}

.logo-tagline {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: var(--accent-color);
    text-align: center;

}

@media screen and (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-text, .about-logo {
        margin-right: 0;
        margin-bottom: 2rem;
    }
}

/* Services Section */
#services {
    padding: 4rem 5%;
    background-color: var(--primary-color);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.2);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Contact Section */
#contact {
    padding: 4rem 5%;
    background-color: rgba(255, 255, 255, 0.05);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.contact-form {
    flex: 1;
    margin-right: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    color: var(--secondary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 1rem;
}

.social-links {
    display: flex;
    justify-content: flex-start;
    margin-top: 2rem;
}

.social-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--accent-color);
}

@media screen and (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-form {
        margin-right: 0;
        margin-bottom: 2rem;
    }
}

/* Donation & Funding Section */
#donation-funding {
    padding: 4rem 5%;
    background-color: rgba(0, 255, 0, 0.05);
}

.donation-funding-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.funding-options {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.funding-card {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.funding-card:hover {
    transform: translateY(-10px);
}

.funding-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.funding-card h3 {
    margin-bottom: 1rem;
}

.donate-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.donate-btn:hover {
    background-color: var(--secondary-color);
}

.current-project {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
}

.current-project h3 {
    margin-bottom: 1rem;
}

.progress-bar {
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress {
    height: 100%;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: bold;
}

.funding-goal {
    text-align: right;
    margin-bottom: 1rem;
    font-style: italic;
}

.project-description {
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .funding-options {
        flex-direction: column;
    }
}

/* SV-Market Section */
#sv-market {
    padding: 4rem 5%;
    background-color: var(--primary-color);
}

.market-container {
    max-width: 1200px;
    margin: 0 auto;
}

.market-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--secondary-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 255, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-title {
    font-size: 1.2rem;
    padding: 1rem;
    color: var(--accent-color);
}

.product-description {
    padding: 0 1rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
    min-height: 80px;
}

.product-price {
    padding: 1rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.buy-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buy-btn:hover {
    background-color: var(--secondary-color);
}

@media screen and (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

.warning-message {
    background-color: rgba(0, 255, 0, 0.1);
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.warning-message h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.warning-message p {
    margin-bottom: 1rem;
}

.warning-message .email-link {
    display: inline-block;
    color: var(--accent-color);
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.warning-message .email-link:hover {
    color: var(--secondary-color);
}

.warning-message .social-links {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.warning-message .social-icon {
    margin: 0 0.5rem;
    font-size: 1.2rem;
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.warning-message .social-icon:hover {
    color: var(--accent-color);
}


/* Docs Section */
#docs {
    padding: 4rem 5%;
    background-color: rgba(0, 255, 0, 0.05);
}

.docs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.docs-container h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.docs-container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.doc-card {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.2);
}

.doc-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.doc-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.doc-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.doc-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.doc-link:hover {
    background-color: var(--secondary-color);
}

@media screen and (max-width: 768px) {
    .docs-grid {
        grid-template-columns: 1fr;
    }
}