/* Home Page Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-image {
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

/* Navbar */
.home-header .navbar {
    padding: 1rem 0;
}

.home-header .navbar-brand {
    font-size: 1.2rem;
    font-weight: 700;
}

.home-header .logo-container {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 10px;
}

.brand-name {
    font-size: 1.1rem;
    color: #333;
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 10px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* Icon Box */
.icon-box {
    display: inline-block;
    padding: 20px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 15px;
}

/* Footer */
.home-footer {
    margin-top: auto;
}

.home-footer a {
    transition: color 0.3s;
}

.home-footer a:hover {
    color: #fff !important;
}

.social-links a {
    transition: transform 0.3s;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 80px 0;
}

/* Responsive */
/* Large screens optimization */
@media (min-width: 1400px) {
    .container-fluid.wide-container {
        max-width: 1600px;
        margin: 0 auto;
        padding: 0 60px;
    }
    
    .hero-section {
        padding: 80px 0 !important;
    }
    
    .hero-section h1 {
        font-size: 3.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.5rem;
    }
}

@media (min-width: 1600px) {
    .container-fluid.wide-container {
        max-width: 1800px;
        padding: 0 80px;
    }
    
    .hero-section h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        padding: 40px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .home-header .brand-name {
        font-size: 0.9rem;
    }
    
    .home-header .logo-container {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 350px;
        padding: 30px 0;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .display-5 {
        font-size: 1.5rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Button Hover Effects */
.btn {
    transition: all 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

