/* Component Styles */



/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Info Bar */
.info-bar {
    background: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow-light);
    border-bottom: 1px solid var(--medium-gray);
}

.info-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.info-item:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--medium-blue);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(77, 166, 255, 0.1);
    border-radius: 50%;
}

.info-item h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.info-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Image Badge */
.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--medium-gold);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 3;
    box-shadow: var(--shadow);
}

/* Rating Stars */
.rating {
    display: flex;
    gap: 2px;
    margin-top: 5px;
}

.rating i {
    color: var(--light-gold);
    font-size: 0.8rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--medium-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--light-gold);
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--medium-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

/* Video Placeholder */
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--medium-blue) 0%, var(--dark-blue) 100%);
}

/* Responsive Components */
@media (max-width: 768px) {
    .header-actions {
        gap: 15px;
    }
    
    .info-items {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .loading-logo h2 {
        font-size: 1.2rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}