/* Splash Page Styles - Moved from index.blade.php */

/* Login Link Custom Styles */
.splash-login-link {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
}

.splash-login-link:hover {
    background: linear-gradient(135deg, #20c997 0%, #198754 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 135, 84, 0.4);
    color: white !important;
}

.splash-container {
    min-height: 100vh;
    background: #fff;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
}

.splash-header {
    flex-shrink: 0;
}

.main-logo {
    border-radius: 50%;
    background: rgba(25, 135, 84, 0.1);
    padding: 20px;
    border: 2px solid rgba(25, 135, 84, 0.2);
}

.splash-title {
    color: #198754;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.splash-subtitle {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.splash-description {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.company-selection-section {
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.company-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #000;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    color: #521616ff;
    background-color: #188753;
    border-color: #000;
}

.company-card-header {
    margin-bottom: 20px;
}

.company-logo {
    margin-bottom: 20px;
}

.company-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    background: white;
    padding: 5px;
    box-shadow: 0 8px 25px rgba(25, 135, 84, 0.4);
    transition: all 0.3s ease;
}

.company-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(25, 135, 84, 0.5);
}

.company-logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #198754 0%, #20c997 50%, #0d6efd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(25, 135, 84, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.company-logo-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(25, 135, 84, 0.5);
}

.company-logo-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0%, transparent 30%, rgba(255, 255, 255, 0.2) 70%, transparent 100%);
    border-radius: 50%;
}

.company-logo-placeholder::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.company-logo-placeholder i {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

/* Different Avatar Styles */
.company-avatar-0 {
    background: linear-gradient(135deg, #198754 0%, #20c997 50%, #0d6efd 100%);
}

.company-avatar-1 {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 50%, #ffc107 100%);
}

.company-avatar-2 {
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 50%, #fd7e14 100%);
}

.company-avatar-3 {
    background: linear-gradient(135deg, #0d6efd 0%, #20c997 50%, #198754 100%);
}

.company-avatar-4 {
    background: linear-gradient(135deg, #fd7e14 0%, #dc3545 50%, #6f42c1 100%);
}

.company-avatar-5 {
    background: linear-gradient(135deg, #20c997 0%, #0d6efd 50%, #6f42c1 100%);
}

.company-name {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.company-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.company-card-body {
    margin-top: auto;
}

.btn-select-company {
    background: #198754 !important;
    border: none !important;
    border-radius: 25px;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
    color: white !important;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-select-company:hover {
    background: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4) !important;
    color: white !important;
}

.btn-select-company:active {
    transform: translateY(0px);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3) !important;
}

.btn-select-company:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25) !important;
}

.splash-footer {
    background: #198754;
    border-radius: 15px;
    padding: 15px 30px;
    margin-top: 40px;
    color: white;
    text-align: center;
}

.footer-content {
    background: #198754;
}

.footer-content p {
    color: #fff;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .splash-title {
        font-size: 2rem;
    }

    .splash-subtitle {
        font-size: 1.2rem;
    }

    .company-card {
        padding: 20px;
    }

    .splash-footer {
        padding: 10px 20px;
        margin-top: 30px;
    }

    .footer-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .splash-container {
        padding: 20px 10px;
    }

    .splash-title {
        font-size: 1.8rem;
    }

    .company-card {
        padding: 15px;
    }

    .splash-footer {
        padding: 10px 15px;
        margin-top: 20px;
    }

    .footer-content p {
        font-size: 0.75rem;
    }
}
