/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-primary);
}

.hero-content h1 {
    font-size: var(--text-5xl);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.hero-description {
    font-size: var(--text-xl);
    margin-bottom: var(--spacing-xl);
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

/* Services Preview Section */
.services-preview {
    background-color: var(--bg-secondary);
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: var(--spacing-xl);
    border: 2px solid var(--gold-color);
}

.service-card h3, .service-card p {
    text-align: center;
    width: 100%;
}

.service-icon {
    width: 120px;
    height: 120px;
    margin-bottom: var(--spacing-lg);
    border-radius: 20px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.service-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-secondary);
}

/* About Preview Section */
.about-preview {
    background-color: var(--bg-primary);
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.founder-name {
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.founder-bio {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: var(--radius-lg);
    border: 3px solid var(--gold-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: var(--spacing-xl);
}

.cta-content .btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.cta-content .btn:hover {
    background-color: var(--hover-secondary);
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    color: var(--text-light);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

/* .footer-logo {
    height: 40px;
    margin-bottom: var(--spacing-md);
} */

.footer-col h4 {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-col ul li a {
    color: var(--text-light);
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.footer-col ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color var(--transition-fast);
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-light);
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-links a {
    color: var(--text-light);
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: var(--text-4xl);
    }
    
    .hero-description {
        font-size: var(--text-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .about-preview .grid-2 {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .about-image {
        order: -1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: var(--text-3xl);
    }
    
    .hero-description {
        font-size: var(--text-base);
    }
    
    .section-title h2 {
        font-size: var(--text-2xl);
    }
}

@media (min-width: 1025px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 3rem;
    }
    .footer-brand {
        grid-column: auto;
        max-width: 300px;
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
    }
}

[data-theme="dark"] .card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .about-preview,
[data-theme="dark"] .about-content,
[data-theme="dark"] .footer,
[data-theme="dark"] .footer-col,
[data-theme="dark"] .footer-bottom {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    box-shadow: var(--shadow-md);
}
[data-theme="dark"] .section-title h2,
[data-theme="dark"] .section-title p {
    color: var(--text-primary) !important;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--gold-color) !important;
}

body, p, li, span, a, label, input, select, textarea, .section-title p, .service-card p {
    color: var(--text-light) !important;
} 