/* Custom styles for AvatarPsClub */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.min-vh-50 {
    min-height: 50vh;
}

/* Card hover effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Navbar brand styling */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Form styling */
.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-primary {
    background-color: #667eea;
    border-color: #667eea;
}

.btn-primary:hover {
    background-color: #5568d3;
    border-color: #5568d3;
}

/* Pricing card highlight */
.card.border-primary {
    border-width: 2px !important;
}

.card.border-warning {
    border-width: 2px !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Footer styling */
footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Screenshot styling */
.screenshot-hero {
    max-height: 500px;
    object-fit: contain;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-hero:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.screenshot-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.screenshot-img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.screenshot-img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Equipment page */
.equipment-img {
    max-height: 260px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.equipment-card-img {
    height: 260px;
    object-fit: cover;
}

.equipment-card ul {
    padding-left: 1.1rem;
}

.equipment-card code {
    background: rgba(0,0,0,0.04);
    padding: 0.1rem 0.35rem;
    border-radius: 0.35rem;
}

/* Video section styling */
#video-wrapper {
    border-radius: 0.5rem;
    overflow: hidden;
}

#video-wrapper iframe {
    border-radius: 0.5rem;
    width: 100%;
    height: 100%;
}

#video-fallback {
    z-index: 10;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    /* На экранах меньше lg (992px) - мобильные и планшеты */
    .navbar .d-flex.gap-2 {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }
    
    .navbar .d-flex.gap-2 .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    /* На экранах меньше md (768px) - мобильные телефоны */
    .hero-section {
        min-height: 50vh;
        padding: 2rem 0;
    }
    
    /* Отступ между кнопками и скриншотом в мобильной версии */
    .hero-section .d-flex.flex-wrap.gap-2 {
        margin-bottom: 2rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    /* Улучшаем отступы для карточек на мобильных */
    .card {
        margin-bottom: 1rem;
    }
    
    /* Улучшаем размеры кнопок на мобильных */
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Улучшаем отступы секций */
    section {
        padding: 3rem 0 !important;
    }
    
    /* Улучшаем отступы в футере */
    footer {
        text-align: center !important;
    }
    
    footer .text-md-end {
        text-align: center !important;
        margin-top: 1rem;
    }
}

/* Дополнительные улучшения для очень маленьких экранов */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    h1.display-4 {
        font-size: 1.75rem;
    }
    
    h2.display-5 {
        font-size: 1.5rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    /* Дополнительный отступ для кнопок на очень маленьких экранах */
    .hero-section .d-flex.flex-wrap.gap-2 {
        margin-bottom: 2.5rem;
    }
}

/* Дополнительные стили для dashboard */
.w-100 {
    width: 100% !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-muted {
    color: #6c757d !important;
}

.text-danger {
    color: #dc3545 !important;
}

.text-success {
    color: #28a745 !important;
}

.small {
    font-size: 0.875rem;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.text-center {
    text-align: center !important;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}



