/* General site styles */

/* Hero section with background image */
.hero-section {
    background-size: cover;
    background-position: center;
    height: calc(100vh + 80px);
    display: flex;
    align-items: center;
    width: 100vw;
    margin-top: -80px;
    padding: 0;
}

/* Dark backgrounds for sections */
.bg-dark-section {
    background-color: #121212;
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.bg-dark-section-alt {
    background-color: #181818;
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

/* Container fluid without paddings */
.container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Section divider */
.divider-custom {
    margin: 1.25rem 0 1.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.divider-custom .divider-custom-line {
    width: 100%;
    max-width: 7rem;
    height: 0.25rem;
    background-color: #333;
    border-radius: 1rem;
    border-color: #333;
}

.divider-custom .divider-custom-line:first-child {
    margin-right: 1rem;
}

.divider-custom .divider-custom-line:last-child {
    margin-left: 1rem;
}

.divider-custom .divider-custom-icon {
    color: #0a84ff;
    font-size: 1.5rem;
}

/* Text colors */
.text-secondary {
    color: #adb5bd !important;
}

/* Card styles */
.card-dark {
    background-color: #1e1e1e;
    border: 1px solid #333;
}

/* Feature icon */
.feature-icon {
    width: 70px;
    height: 70px;
}

/* Responsive typography */
@media (max-width: 768px) {
    h1.display-4 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1rem;
    }
} 