/* Simple and Clear Styles for CS 1.6 LEGEND'os Server */

/* Make everything more child-friendly and simple */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Bigger, clearer text */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
}

/* Simple buttons with clear text */
.btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ff8c42, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: linear-gradient(45deg, #4a9eff, #6bb6ff);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.4);
}

.btn-secondary:hover {
    background: linear-gradient(45deg, #6bb6ff, #4a9eff);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 158, 255, 0.6);
}

/* Clearer service cards */
.service-card {
    background: rgba(42, 52, 65, 0.9);
    border: 3px solid transparent;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    border-color: #ff6b35;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.service-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.service-subtitle {
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 2rem;
}

/* Bigger icons */
.service-icon {
    width: 160px;
    height: 80px;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

/* Clearer package selection */
.package-item {
    background: rgba(15, 20, 25, 0.8);
    border: 3px solid transparent;
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.package-item:hover {
    border-color: #4a9eff;
    background: rgba(74, 158, 255, 0.1);
    transform: scale(1.02);
}

.package-item.selected {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.4);
}

.package-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.package-description {
    color: #c0c0c0;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Bigger modal text */
.modal-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.modal-body {
    font-size: 1.1rem;
}

/* Clearer form elements */
.form-control {
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 10px;
    border: 3px solid #4a5568;
}

.form-control:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.form-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #ff6b35;
}

/* Bigger badges */
.badge {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

/* Clearer error and success messages */
.error-message {
    background: rgba(220, 53, 69, 0.15);
    border: 3px solid #dc3545;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    color: #dc3545;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.success-message {
    background: rgba(40, 167, 69, 0.15);
    border: 3px solid #28a745;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    color: #28a745;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Bigger step numbers */
.step-number {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Bigger info icons */
.info-icon {
    font-size: 3rem;
    width: 160px;
    height: 80px;
}

.info-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.info-text p {
    font-size: 1.1rem;
}

/* Clearer welcome section */
.welcome-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.welcome-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

/* Bigger service section titles */
.services-section h2,
.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .welcome-content h2 {
        font-size: 2.2rem;
    }
    
    .welcome-content p {
        font-size: 1.2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .package-item {
        padding: 1.5rem;
    }
    
    .package-price {
        font-size: 1.4rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .welcome-content h2 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    
    .package-item {
        padding: 1.2rem;
    }
}
