/* Основные переменные */
:root {
    --primary: #0d6efd;
    --primary-light: #3d8bfd;
    --primary-dark: #0b5ed7;
    --secondary: #6c757d;
    --success: #198754;
    --danger: #dc3545;
    --warning: #ffc107;
    --light: #f8f9fa;
    --dark: #212529;
}

/* Общие стили */
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Герой-секция */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('/assets/images/hero.jpg')
                no-repeat center center;
    background-size: cover; /* Добавлено для полного покрытия области */
	animation: fadeIn 1s ease-out;
	min-height: 80vh;
}

/* Карточки катеров */
.boat-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.boat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.boat-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* Навигация */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    transition: transform 0.3s;
}

.navbar-brand:hover img {
    transform: rotate(-5deg);
}

/* Футер */
footer {
    background-color: var(--dark);
    color: white;
    margin-top: auto;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: white;
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Стили для страницы "Судовладельцам" */
.for-owners-hero {
    background: linear-gradient(rgba(0, 82, 155, 0.8), rgba(0, 82, 155, 0.8)), 
                url('../images/owners-bg.jpg') center/cover;
    color: white;
    padding: 100px 0;
}

.owner-benefit-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.tariff-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tariff-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.accordion-button:not(.collapsed) {
    background-color: white;
    color: var(--primary);
}