/* Air4.media Site Styles */
/* Version 10.01 */

:root {
    --primary-color: #0066cc;
    --secondary-color: #6c757d;
    --light-bg: #f8f9fa;
}

/* Navbar fixes */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand img {
    margin-right: 10px;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
}

/* Jumbotron styles */
.jumbotron {
    padding: 4rem 2rem;
    margin-bottom: 0;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.jumbotron h1 {
    margin-bottom: 1.5rem;
}

.jumbotron .lead {
    margin-bottom: 2rem;
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    color: #333;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(0.5);
}

/* Feature circles */
.feature-circle {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 50%;
    padding: 20px;
}

.feature-circle img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 50%;
}

/* Footer */
.footer {
    background-color: var(--light-bg);
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid #dee2e6;
}

/* Demo form */
#demo-form {
    padding-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .jumbotron h1 {
        font-size: 2rem;
    }
    
    .feature-circle {
        width: 150px;
        height: 150px;
    }
}

/* Main content wrapper */
.c-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

/* Utility classes */
.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15)!important;
}
