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

body {
    font-family: 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.brand:hover {
    color: #007bff;
}

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

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #007bff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 100px 20px 50px;
}

.hero h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.divider {
    width: 80px;
    height: 3px;
    background: white;
    margin: 30px auto;
    border-radius: 2px;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.social-links i {
    font-size: 14px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}

.project {
    margin-bottom: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.project:last-child {
    margin-bottom: 0;
}

.project.reverse {
    direction: rtl;
}

.project.reverse .content {
    direction: ltr;
}

.content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000 !important;
}

.content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #666;
}

.content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content li {
    margin-bottom: 10px;
    color: #666;
    font-size: 1rem;
    line-height: 1.4;
}

/* Company list styling */
.content ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
    align-items: flex-start;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.content ul li {
    font-size: calc(1rem + 3pt);
    font-weight: bold;
    margin-bottom: 0;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    text-align: center;
    color: #333;
}

.content ul li img {
    height: 3.6em; /* 300% of 1.2em (previous) */
    width: auto;
    object-fit: contain;
    vertical-align: middle;
    margin-top: 4px;
}

.links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.links a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.project img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Aaron image - same size as company logos */
.project:last-child img {
    height: 3.6em;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
}

.project img:hover {
    transform: scale(1.02);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #333;
    color: white;
    text-align: center;
}

.contact h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact .social-links {
    justify-content: center;
}

.contact .social-links a {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact .social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Footer */
footer {
    background: #222;
    color: #999;
    padding: 40px 0;
    text-align: center;
}

footer ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

footer a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #007bff;
}

/* Responsive Design */
    @media (max-width: 768px) {
        .nav-menu {
            display: none;
        }
        
        .hamburger {
            display: flex;
        }
        
        .hero h3 {
            font-size: 2.5rem;
        }
    
    .project {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .project.reverse {
        direction: ltr;
    }
    
            .content h3 {
            font-size: 2rem;
        }
        
        .contact h3 {
            font-size: 2rem;
        }
    
    .social-links {
        gap: 15px;
    }
    
    .social-links a {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    footer ul {
        gap: 20px;
    }
}

    @media (max-width: 480px) {
        .hero h3 {
            font-size: 2rem;
        }
        
        .content h3 {
            font-size: 1.8rem;
        }
        
        .contact h3 {
            font-size: 1.8rem;
        }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .links {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.mochi-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.mochi-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #333;
    letter-spacing: 1px;
}

.mochi-logo {
    height: 7.2em; /* 100% bigger than 3.6em */
    width: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    background: #fff;
    padding: 8px;
}