/* Y2K Nostalgic Design - ExpresOIDQ Landing Page */
/* Base Styles and Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Y2K Color Palette */
    --primary-metal: linear-gradient(135deg, #c0c0c0 0%, #808080 25%, #e6e6e6 50%, #a0a0a0 75%, #d3d3d3 100%);
    --secondary-chrome: linear-gradient(45deg, #4169e1 0%, #00bfff 25%, #1e90ff 50%, #0066cc 75%, #003d99 100%);
    --accent-hologram: linear-gradient(90deg, #ff6b6b 0%, #4ecdc4 25%, #45b7d1 50%, #96ceb4 75%, #feca57 100%);
    --background-tech: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-accent: #00ffff;
    --shadow-glow: 0 0 20px rgba(0, 255, 255, 0.3);
    --shadow-depth: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    /* Typography */
    --font-futuristic: 'Audiowide', cursive;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 12px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background-tech);
    overflow-x: hidden;
}

.bloom-container,
.moss-container,
.root-container,
.stream-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Notice Styles */
.bloom-cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-metal);
    color: #333;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-depth);
}

.bloom-cookie-notice.show {
    transform: translateY(0);
}

.bloom-cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    gap: 20px;
}

.bloom-cookie-content i {
    font-size: 24px;
    color: #ff6b6b;
}

.bloom-cookie-buttons {
    display: flex;
    gap: 10px;
}

.bloom-btn-accept,
.bloom-btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bloom-btn-accept {
    background: var(--secondary-chrome);
    color: white;
}

.bloom-btn-decline {
    background: transparent;
    color: #666;
    border: 2px solid #ddd;
}

.bloom-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Header Styles */
.stream-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.stream-nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.stream-logo a {
    font-family: var(--font-futuristic);
    font-size: 24px;
    color: var(--text-accent);
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.stream-nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.stream-nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.stream-nav-menu a:hover {
    color: var(--text-accent);
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

.stream-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-hologram);
    transition: width 0.3s ease;
}

.stream-nav-menu a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.stream-mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.stream-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.root-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 998;
}

/* Button Styles */
.bloom-btn-primary,
.bloom-btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.bloom-btn-primary {
    background: var(--secondary-chrome);
    color: white;
    box-shadow: var(--shadow-depth);
}

.bloom-btn-secondary {
    background: transparent;
    color: var(--text-accent);
    border: 2px solid var(--text-accent);
}

.bloom-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow), var(--shadow-depth);
}

.bloom-btn-secondary:hover {
    background: var(--text-accent);
    color: #000;
    box-shadow: var(--shadow-glow);
}

/* Hero Section */
.grove-hero {
    padding: 120px 0 var(--section-padding);
    background: radial-gradient(ellipse at center, rgba(65, 105, 225, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.grove-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(0,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translate(-50px, -50px) rotate(0deg); }
    100% { transform: translate(-50px, -50px) rotate(360deg); }
}

.grove-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.grove-hero-title {
    font-family: var(--font-futuristic);
    font-size: 3.5em;
    line-height: 1.2;
    margin-bottom: 20px;
    background: var(--accent-hologram);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.grove-hero-subtitle {
    font-size: 1.2em;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.grove-hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.grove-hero-image {
    position: relative;
}

.grove-hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-depth);
    border: 2px solid rgba(0, 255, 255, 0.2);
}

/* About Section */
.moss-about {
    padding: var(--section-padding);
    background: linear-gradient(45deg, rgba(22, 33, 62, 0.8) 0%, rgba(26, 26, 46, 0.8) 100%);
    position: relative;
}

.moss-title {
    font-family: var(--font-futuristic);
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-accent);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.moss-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-secondary);
}

.moss-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.moss-points {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.moss-point h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--text-accent);
    font-weight: 600;
}

.moss-point p {
    margin-bottom: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.moss-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.moss-image-item {
    text-align: center;
}

.moss-image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    border: 2px solid rgba(0, 255, 255, 0.2);
    box-shadow: var(--shadow-depth);
    transition: all 0.3s ease;
}

.moss-image-item img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow), var(--shadow-depth);
    border-color: var(--text-accent);
}

.moss-image-item h4 {
    margin-top: 15px;
    color: var(--text-primary);
    font-weight: 600;
}

/* Benefits Section */
.bloom-benefits {
    padding: var(--section-padding);
    background: radial-gradient(circle at 30% 70%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
}

.bloom-title {
    font-family: var(--font-futuristic);
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.bloom-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.bloom-benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.bloom-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow), var(--shadow-depth);
    border-color: var(--text-accent);
}

.bloom-benefit-card i {
    font-size: 3em;
    color: var(--text-accent);
    margin-bottom: 20px;
    display: block;
}

.bloom-benefit-card h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.bloom-benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.bloom-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.bloom-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bloom-stat-number {
    font-family: var(--font-futuristic);
    font-size: 3em;
    color: var(--text-accent);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.bloom-stat-label {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* Features Section */
.root-features {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
}

.root-title {
    font-family: var(--font-futuristic);
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.root-feature-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.root-feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 40px;
    transition: all 0.3s ease;
}

.root-feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: var(--shadow-depth);
}

.root-feature-item h3 {
    font-size: 1.8em;
    color: var(--text-accent);
    margin-bottom: 20px;
    font-weight: 600;
}

.root-feature-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.05em;
}

/* Testimonials Section */
.root-testimonials {
    padding: var(--section-padding);
    background: radial-gradient(ellipse at center, rgba(69, 183, 209, 0.1) 0%, transparent 70%);
}

.root-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.root-testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.root-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow), var(--shadow-depth);
    border-color: var(--text-accent);
}

.root-testimonial-image {
    text-align: center;
    margin-bottom: 20px;
}

.root-testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--text-accent);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.root-testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.root-testimonial-stars i {
    color: #feca57;
    font-size: 1.2em;
}

.root-testimonial-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.root-testimonial-author h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 5px;
}

.root-testimonial-author span {
    color: var(--text-accent);
    font-size: 0.9em;
}

/* Contact/Form Section */
.stream-contact {
    padding: var(--section-padding);
    background: linear-gradient(45deg, rgba(22, 33, 62, 0.8) 0%, rgba(15, 15, 35, 0.8) 100%);
}

.stream-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.stream-contact-title {
    font-family: var(--font-futuristic);
    font-size: 2.5em;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.stream-contact-subtitle {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.stream-contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stream-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.stream-contact-item i {
    font-size: 2em;
    color: var(--text-accent);
    margin-top: 5px;
}

.stream-contact-item h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.3em;
}

.stream-contact-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Form Styles */
.stream-contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 40px;
}

.stream-form h3 {
    font-size: 1.8em;
    color: var(--text-accent);
    margin-bottom: 30px;
    text-align: center;
}

.stream-form-group {
    margin-bottom: 25px;
}

.stream-form-group label {
    display: block;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 500;
}

.stream-form-group input,
.stream-form-group select,
.stream-form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.stream-form-group input:focus,
.stream-form-group select:focus,
.stream-form-group textarea:focus {
    outline: none;
    border-color: var(--text-accent);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.stream-form-group input::placeholder,
.stream-form-group textarea::placeholder {
    color: rgba(224, 224, 224, 0.5);
}

.stream-submit {
    width: 100%;
    margin-top: 20px;
}

.stream-form-note {
    font-size: 0.9em;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 15px;
}

/* Footer */
.bloom-footer {
    background: linear-gradient(180deg, rgba(15, 15, 35, 0.9) 0%, rgba(10, 10, 20, 1) 100%);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.bloom-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.bloom-footer-section h3,
.bloom-footer-section h4 {
    color: var(--text-accent);
    margin-bottom: 20px;
    font-size: 1.3em;
}

.bloom-footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.bloom-footer-section ul {
    list-style: none;
}

.bloom-footer-section ul li {
    margin-bottom: 10px;
}

.bloom-footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bloom-footer-section ul li a:hover {
    color: var(--text-accent);
}

.bloom-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.bloom-contact-info i {
    color: var(--text-accent);
    width: 20px;
}

.bloom-footer-social {
    margin-top: 20px;
}

.bloom-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.bloom-social-icons i {
    font-size: 1.5em;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.bloom-social-icons i:hover {
    color: var(--text-accent);
    transform: translateY(-3px);
}

.bloom-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* Responsive Design - Mobile First */

/* Tablet Styles */
@media (max-width: 1024px) {
    .grove-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .grove-hero-title {
        font-size: 3em;
    }
    
    .moss-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stream-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .bloom-benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .root-testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .stream-nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(15, 15, 35, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid rgba(0, 255, 255, 0.2);
    }
    
    .stream-nav-menu.active {
        transform: translateX(0);
    }
    
    .stream-mobile-toggle {
        display: flex;
    }
    
    .stream-mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .stream-mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .stream-mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .root-mobile-overlay.active {
        display: block;
    }
    
    .grove-hero {
        padding: 100px 0 60px;
    }
    
    .grove-hero-title {
        font-size: 2.5em;
    }
    
    .grove-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .moss-images {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .moss-image-item img {
        height: 250px;
    }
    
    .bloom-benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bloom-benefit-card {
        padding: 30px 20px;
    }
    
    .bloom-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }
    
    .root-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bloom-cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .bloom-cookie-buttons {
        justify-content: center;
    }
    
    .moss-title,
    .bloom-title,
    .root-title,
    .stream-contact-title {
        font-size: 2em;
    }
    
    .stream-form-group input,
    .stream-form-group select,
    .stream-form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .bloom-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .bloom-contact-info p {
        justify-content: center;
    }
    
    .bloom-social-icons {
        justify-content: center;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .grove-hero-title {
        font-size: 2em;
    }
    
    .grove-hero-subtitle {
        font-size: 1em;
    }
    
    .moss-title,
    .bloom-title,
    .root-title,
    .stream-contact-title {
        font-size: 1.8em;
    }
    
    .stream-contact-form {
        padding: 30px 20px;
    }
    
    .bloom-benefit-card,
    .root-feature-item,
    .root-testimonial-card {
        padding: 25px 15px;
    }
    
    .bloom-stat-number {
        font-size: 2.5em;
    }
}

/* Large Desktop Styles */
@media (min-width: 1440px) {
    :root {
        --container-width: 1400px;
    }
    
    .grove-hero-title {
        font-size: 4em;
    }
    
    .moss-title,
    .bloom-title,
    .root-title,
    .stream-contact-title {
        font-size: 3em;
    }
} 