/* Base Styles */
:root {
    --primary-color: #6c63ff;
    --secondary-color: #f50057;
    --accent-color: #00bfa6;
    --text-color: #333333;
    --light-text: #6b7c93;
    --bg-color: #ffffff;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a2e;
    --border-color: #e1e1e1;
    --container-width: 1200px;
    --border-radius: 8px;
    --box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #5a52e0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.2);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--light-text);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

section {
    padding: 100px 0;
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding-top: 150px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 30px;
    max-width: 600px;
}

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

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Features Section */
.features-section {
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    background-color: rgba(108, 99, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--light-text);
}

/* How It Works Section */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
}

/* Draw a continuous connector line across all steps */
.steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--border-color);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
}

/* Remove per-step connector lines; global line handles it */
.step:not(:last-child)::after { content: none; }

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1; /* keep circles above the connector line */
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step p {
    color: var(--light-text);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-bg);
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial {
    flex: 0 0 370px;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    scroll-snap-align: start;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
}

.author-info p {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Waitlist Section */
.waitlist-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a52e0 100%);
    color: white;
    text-align: center;
}

.waitlist-content {
    max-width: 700px;
    margin: 0 auto;
}

.waitlist-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.waitlist-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.waitlist-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.waitlist-form input {
    flex: 1;
    min-width: 300px;
    padding: 15px 20px;
    border-radius: 30px;
    border: none;
    font-size: 1rem;
}

.waitlist-form .btn {
    flex-shrink: 0;
}

.form-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 15px;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--light-text);
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 70px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-logo p {
    opacity: 0.7;
    max-width: 250px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.link-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.link-column h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.link-column a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.link-column a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-social h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom .address {
    font-size: 0.75rem;
    opacity: 0.5;
    margin-top: 5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-section .container {
        flex-direction: column;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links, .cta-button {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    section {
        padding: 70px 0;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .testimonials-slider {
        padding-bottom: 50px;
    }
    
    .testimonial {
        flex: 0 0 90%;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .print-only {
        display: block;
        margin-top: 20px;
    }
    
    .print-url {
        font-size: 10pt;
        color: #555;
    }
    
    /* General print optimizations */
    body {
        background: white;
        color: black;
        font-size: 12pt;
        line-height: 1.5;
        margin: 0;
        padding: 0;
    }

    /* Hide non-essential elements */
    header, 
    .mobile-menu-toggle, 
    .nav-links, 
    .cta-button,
    .waitlist-section,
    footer {
        display: none !important;
    }

    /* Show main content full width */
    .container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    /* Adjust colors for better printing */
    h1, h2, h3, h4, p {
        color: black;
    }
    
    .highlight {
        color: black;
        font-weight: bold;
    }

    /* Remove shadows and effects */
    .feature-card, 
    .hero-image img, 
    .about-image img {
        box-shadow: none !important;
    }
    
    /* Optimize section spacing */
    section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
    
    /* Ensure images print well */
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    /* Add URL after links */
    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 90%;
    }
    
    /* Don't add URL after navigation links */
    .nav-links a:after {
        content: "";
    }
    
    /* Create specific page breaks */
    #features, #how-it-works, #about {
        page-break-before: always;
    }
    
    /* Make hero section print nicely */
    .hero-section {
        min-height: auto;
        background: none;
        padding-top: 20px;
    }
    
    .hero-section .container {
        flex-direction: row;
    }
    
    /* Add corporate info for printed version */
    #home:after {
        content: "\A\A Formentia LLC, 30 N Gould St Ste R, Sheridan, WY 82801";
        white-space: pre;
        font-size: 9pt;
        display: block;
        margin-top: 50px;
        text-align: center;
    }
}

/* Print-only elements */
.print-only {
    display: none;
}

.print-url {
    margin-bottom: 0;
}

/* Print Styles */
@media print {
    .print-only {
        display: block;
        margin-top: 20px;
    }
    
    .print-url {
        font-size: 10pt;
        color: #555;
    }
    
    /* General print optimizations */
    body {
        background: white;
        color: black;
        font-size: 12pt;
        line-height: 1.5;
        margin: 0;
        padding: 0;
    }

    /* Hide non-essential elements */
    header, 
    .mobile-menu-toggle, 
    .nav-links, 
    .cta-button,
    .waitlist-section,
    footer {
        display: none !important;
    }

    /* Show main content full width */
    .container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    /* Adjust colors for better printing */
    h1, h2, h3, h4, p {
        color: black;
    }
    
    .highlight {
        color: black;
        font-weight: bold;
    }

    /* Remove shadows and effects */
    .feature-card, 
    .hero-image img, 
    .about-image img {
        box-shadow: none !important;
    }
    
    /* Optimize section spacing */
    section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
    
    /* Ensure images print well */
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    /* Add URL after links */
    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 90%;
    }
    
    /* Don't add URL after navigation links */
    .nav-links a:after {
        content: "";
    }
    
    /* Create specific page breaks */
    #features, #how-it-works, #about {
        page-break-before: always;
    }
    
    /* Make hero section print nicely */
    .hero-section {
        min-height: auto;
        background: none;
        padding-top: 20px;
    }
    
    .hero-section .container {
        flex-direction: row;
    }
    
    /* Add corporate info for printed version */
    #home:after {
        content: "\A\A Formentia LLC, 30 N Gould St Ste R, Sheridan, WY 82801";
        white-space: pre;
        font-size: 9pt;
        display: block;
        margin-top: 50px;
        text-align: center;
    }
} 