/* PK Brand Box Styles */

.pk-brand-box {
    position: relative;
    display: block;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pk-brand-box-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.pk-brand-box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    transition: opacity 0.3s ease;
    z-index: 1;
}

.pk-brand-box-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.pk-brand-box-logo {
    margin-bottom: 20px;
}

.pk-brand-box-logo img {
    display: block;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.pk-brand-box-name {
    margin: 0 0 15px 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pk-brand-box-intro {
    margin: 0 0 20px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.9;
}

.pk-brand-box-button {
    display: inline-block;
    padding: 12px 30px;
    background: #007AFF;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
}

/* Hover Effects */

/* No Animation */
.pk-brand-box-hover-none:hover {
    transform: none;
}

/* Lift Effect */
.pk-brand-box-hover-lift {
    transform: translateY(0);
}

.pk-brand-box-hover-lift:hover {
    transform: translateY(-8px);
}

/* Scale Effect */
.pk-brand-box-hover-scale {
    transform: scale(1);
}

.pk-brand-box-hover-scale:hover {
    transform: scale(1.03);
}

/* Scale + Lift Effect */
.pk-brand-box-hover-scale-lift {
    transform: translateY(0) scale(1);
}

.pk-brand-box-hover-scale-lift:hover {
    transform: translateY(-8px) scale(1.03);
}

/* Button Hover Effects */
.pk-brand-box:hover .pk-brand-box-button {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.4);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .pk-brand-box-name {
        font-size: 24px;
    }
    
    .pk-brand-box-intro {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .pk-brand-box {
        min-height: 300px !important;
    }
    
    .pk-brand-box-content {
        padding: 20px;
    }
    
    .pk-brand-box-name {
        font-size: 22px;
    }
    
    .pk-brand-box-intro {
        font-size: 12px;
    }
    
    .pk-brand-box-button {
        padding: 10px 24px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .pk-brand-box {
        min-height: 280px !important;
    }
    
    .pk-brand-box-name {
        font-size: 20px;
    }
    
    .pk-brand-box-logo img {
        max-width: 100px;
    }
}

/* Accessibility */
.pk-brand-box:focus {
    outline: 2px solid #007AFF;
    outline-offset: 2px;
}

.pk-brand-box:focus:not(:focus-visible) {
    outline: none;
}

/* Print Styles */
@media print {
    .pk-brand-box {
        page-break-inside: avoid;
    }
}
