/* ==========================================================================
   BUSINESS PAGE SPECIFIC STYLES
   ========================================================================== */

/* Hero section for business page */
.hero {
    background: linear-gradient(135deg, #F5F5F5, #EEEEEE);
    padding: 8rem 0 6rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    background: linear-gradient(135deg, #1F1F1F, #1E3A8A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    line-height: 1.6;
    color: #1F1F1F;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Business project cards */
.business-project {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 8px 8px 16px rgba(163, 177, 198, 0.6), -8px -8px 16px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.business-project::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #E53935, #3B82F6);
}

.business-project:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.business-project .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.business-project .owner-link {
    color: #1E3A8A;
    text-decoration: none;
    font-weight: 700;
}

.business-project .owner-link:hover {
    color: #E53935;
}

.business-project .owner-icon {
    width: 64px; 
    height: 64px; 
    margin-right: 8px; 
    vertical-align: middle;
    border-radius: 50%;
}

.business-project h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 0.5rem;
}

.business-project h4 {
    font-size: 18px;
    font-weight: 500;
    color: #E53935;
    margin-bottom: 1rem;
    font-style: italic;
}

.business-project ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-project ul li {
    font-size: 16px;
    line-height: 1.6;
    color: #1F1F1F;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    opacity: 0.8;
}

.business-project ul li::before {
    content: '→';
    color: #E53935;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Navigation uses global styles from styles.css */

/* Footer styling */
footer {
    background: #1F1F1F;
    color: white;
    padding: 3rem 0 2rem;
    
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    color: #E53935;
    margin-bottom: 1rem;
}

.footer-content h4 {
    font-size: 18px;
    margin-bottom: 1rem;
    color: white;
}

.footer-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-content ul li {
    margin-bottom: 0.5rem;
}

.footer-content ul a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-content ul a:hover {
    opacity: 1;
    color: #E53935;
}

.footer-content p {
    margin: 0.5rem 0;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}


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

/* Responsive design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero {
        padding: 6rem 0 4rem;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .business-project {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
} 