/* *****************************************************

    ** Custom Stylesheet - ProHost PrestaShop Focused **

    Modern styling for PrestaShop hosting theme

***************************************************** */

/* Modern Color Scheme */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --light-bg: #f8f9fa;
    --dark-text: #2c3e50;
}

/* Enhanced Hero Section */
.mass-head.hero-1 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 500px;
    position: relative;
}

.mass-head.hero-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
}

/* Modern Pricing Tables */
.pricing-table-4 {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.pricing-table-4:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.pricing-table-4.active {
    transform: scale(1.05);
    border: 3px solid var(--accent-color);
}

/* Modern Buttons */
.btn-primary {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

/* Modern Features Section */
.tc-box.s3 {
    padding: 40px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.tc-box.s3:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.tc-box.s3 i {
    font-size: 3em;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Modern Typography */
h1, h2, h3 {
    font-weight: 700;
    color: var(--dark-text);
}

.text-warning {
    color: var(--warning-color) !important;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .pricing-table-4.active {
        transform: none;
        margin-bottom: 20px;
    }
    
    .tc-box.s3 {
        margin-bottom: 30px;
    }
}

/* PrestaShop Brand Colors */
.prestashop-primary {
    color: #25b9d7 !important;
}

.bg-prestashop {
    background-color: #25b9d7 !important;
}
