/**
 * Base CSS for Starter Templates
 *
 * @package Siaracorporatebusiness
 */

/* Common Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #112674;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #005a87;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #007cba;
    border: 2px solid #007cba;
}

.btn-secondary:hover {
    background-color: #007cba;
    color: #ffffff;
}

/* Section Styles */
.cb-slider-section,
.cb-services-section,
.cb-about-section,
.cb-projects-section,
.cb-team-section,
.cb-blog-section,
.cb-testimonials-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333333;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layouts */
.services-grid,
.projects-grid,
.team-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .projects-grid,
    .team-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cb-slider-section,
    .cb-services-section,
    .cb-about-section,
    .cb-projects-section,
    .cb-team-section,
    .cb-blog-section,
    .cb-testimonials-section {
        padding: 60px 0;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
