/* Global Styles */
:root {
    --primary-green: #1a9b45;
    --dark-green: #0d5025;
    --light-green: #28d463;
    --black: #121212;
    --gray: #2a2a2a;
    --white: #f4f4f4;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    color: var(--white);
    background-color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Particles Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(10, 10, 10, 0.9);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin-left: 0.5rem;
    color: var(--primary-green);
    font-weight: 700;
    letter-spacing: 1px;
}

/* Money Logo CSS */
.money-logo {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dollar-sign {
    color: var(--primary-green);
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
    font-family: 'Arial', sans-serif;
}

.stink-lines {
    position: absolute;
    top: -5px;
    right: 0;
}

.stink-lines span {
    position: absolute;
    display: block;
    height: 15px;
    width: 3px;
    background-color: var(--light-green);
    border-radius: 50% 50% 0 0;
    animation: rise 3s infinite;
}

.stink-lines span:nth-child(1) {
    right: 0;
    height: 20px;
    animation-delay: 0.2s;
}

.stink-lines span:nth-child(2) {
    right: 8px;
    height: 15px;
    animation-delay: 0.7s;
}

.stink-lines span:nth-child(3) {
    right: 16px;
    height: 12px;
    animation-delay: 0.4s;
}

@keyframes rise {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0;
    }
}

.money-logo.small {
    width: 30px;
    height: 30px;
}

.money-logo.small .dollar-sign {
    font-size: 1.8rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: var(--light-green);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: calc(100vh - 80px);
    padding: 2rem;
}

.hero h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero .stinks {
    color: var(--primary-green);
    display: inline-block;
    position: relative;
}

.hero .stinks::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: var(--primary-green);
    bottom: -5px;
    left: 0;
}

.hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--light-green);
}

.cta-button {
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 4px 15px rgba(26, 155, 69, 0.5);
}

.cta-button:hover {
    background-color: var(--light-green);
    transform: translateY(-5px);
}

/* Content Sections */
.content-section {
    padding: 5rem 10%;
    margin: 2rem 0;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--light-green);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.content-section h2::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 4px;
    background-color: var(--primary-green);
    bottom: -10px;
    left: 25%;
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

.feature {
    flex: 1;
    padding: 1.5rem;
    background-color: var(--gray);
    margin: 0 1rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.feature h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* How It Works */
.steps {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    margin: 1rem;
    padding: 1.5rem;
    background-color: var(--gray);
    border-radius: 10px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.step:hover {
    transform: scale(1.05);
}

.step-number {
    background-color: var(--primary-green);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product {
    background-color: var(--gray);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(26, 155, 69, 0.2);
}

.product h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product .price {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: bold;
    margin-bottom: 1rem;
}

.order-button {
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    margin-top: 1rem;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.order-button:hover {
    background-color: var(--light-green);
}

/* Testimonials */
.testimonial-carousel {
    margin-top: 3rem;
}

.testimonial {
    background-color: var(--gray);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial::before {
    content: """;
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-green);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial p {
    font-style: italic;
}

.testimonial .author {
    text-align: right;
    margin-top: 1rem;
    color: var(--light-green);
    font-style: normal;
}

/* FAQ */
.faq-item {
    background-color: var(--gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateX(10px);
}

.faq-item h3 {
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

/* Order Form */
#order-form {
    background-color: var(--gray);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: var(--white);
    font-family: inherit;
}

.submit-button {
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-button:hover {
    background-color: var(--light-green);
}

/* Coming Soon Section */
.coming-soon-container {
    background-color: var(--gray);
    padding: 4rem 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.coming-soon-title {
    font-size: 2.5rem;
    color: var(--light-green);
    margin: 1.5rem 0;
    letter-spacing: 3px;
}

.coming-soon-text {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.money-logo.large {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.money-logo.large .dollar-sign {
    font-size: 4rem;
}

.notify-form {
    max-width: 500px;
    margin: 0 auto;
}

.notify-form .form-group {
    display: flex;
    margin-bottom: 0;
}

.notify-form input {
    flex: 1;
    padding: 1rem;
    border-radius: 5px 0 0 5px;
    background-color: #1a1a1a;
    color: var(--white);
    border: 1px solid #333;
    font-family: inherit;
}

.notify-button {
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: bold;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.notify-button:hover {
    background-color: var(--light-green);
}

/* Footer */
footer {
    background-color: var(--black);
    padding: 3rem 5%;
    margin-top: 4rem;
    border-top: 5px solid var(--primary-green);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    color: var(--primary-green);
    margin-left: 0.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 1rem 1rem 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--light-green);
}

.footer-legal {
    width: 100%;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #888;
}

/* Media Queries */
@media (max-width: 992px) {
    .steps, .features {
        flex-direction: column;
    }
    
    .feature, .step {
        margin-bottom: 2rem;
    }
    
    header {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 1rem;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
    
    .content-section {
        padding: 3rem 5%;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero .tagline {
        font-size: 1.2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-links a {
        margin: 0 0.5rem 1rem;
    }
    
    .notify-form .form-group {
        flex-direction: column;
    }
    
    .notify-form input {
        border-radius: 5px;
        margin-bottom: 1rem;
    }
    
    .notify-button {
        border-radius: 5px;
        width: 100%;
    }
}
