/* Font Face Declaration */
@font-face {
    font-family: 'FontAwesome';
    src: url('fonts/fontawesome-webfont.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2C3E50;
    --secondary-color: #f5f0e8;
    --accent-color: #ff3b30;
    --text-color: #333333;
    --spacing-unit: 4rem;
    --transition-speed: 0.3s;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Header Styles */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(245, 240, 232, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 3vw;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}


.nav-logo {
    height: 60px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), 
                url('images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0px;
    color: white;
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
}

.hero-logo {
    width: 200px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Button Styles */
.cta-button, .login-button {
    display: inline-block;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition-speed) ease;
    font-weight: 600;
}

.cta-button {
    background-color: var(--accent-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.login-button {
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
}

/* Responsive adjustments for buttons */
@media (max-width: 768px) {
    .cta-button, .login-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

.about {
    padding: 5rem 0;
    background-color: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about .emphasis {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-color);
    line-height: 1.8;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
    .about h2 {
        font-size: 2rem;
    }
    
    .about .emphasis {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

/* Common Grid Styles for Features and Benefits */
.feature-grid,
.benefits-grid {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
    /* Default to 1 column for mobile */
    grid-template-columns: 1fr;
}

/* Medium screens: 2 columns */
@media (min-width: 768px) {
    .feature-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large screens: 4 columns */
@media (min-width: 1200px) {
    .feature-grid,
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    text-align: center;
    transition: transform var(--transition-speed) ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Process Flow */
.workflow {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('images/collaboration.jpg') center/cover no-repeat;
    color: white;
    padding: 5rem 0;
}

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 4rem 0;
    position: relative;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 2rem 0;
}


.process-step {
    flex: 0 0 auto;
    width: 140px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all var(--transition-speed) ease;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.3);
}

/* Benefits Section */
.benefits {
    background: var(--secondary-color);
    padding: 5rem 0;
}


.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Testimonial Section */
.testimonial {
    background: var(--primary-color);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

blockquote {
    font-size: 1.8rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

cite {
    display: block;
    margin-top: 2rem;
    font-style: normal;
    color: var(--accent-color);
}

/* Contact Section */
.contact {
    background: var(--secondary-color);
    padding: 5rem 0;
    text-align: center;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 1;
    text-align: center;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

/* Font Awesome Icons */
.fa {
    font-family: 'FontAwesome';
    font-style: normal;
}

.fa-user:before { content: "\f007"; }
.fa-search:before { content: "\f002"; }
.fa-check-circle:before { content: "\f058"; }
.fa-lock:before { content: "\f023"; }

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.2rem;
    }
    
    .process-flow {
        padding: 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .process-step {
        min-width: 140px;
        margin: 0 1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

.laio-feed {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)),
                url('images/newsroom.jpg') center/cover no-repeat fixed;
    padding: 5rem 0;
    color: white;
}

.laio-feed h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.laio-feed .emphasis {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.feed-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.feed-description p {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.feed-features {
    margin-top: 2rem;
}

.feed-features ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.feed-features li {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.feed-features li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .feed-features ul {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .laio-feed h2 {
        font-size: 2rem;
    }
}