/**
 * Utility Classes - Travel Agency Management System
 * Common utility classes to replace inline styles
 */

/* ============================================
   TOPBAR UTILITIES
   ============================================ */
/* Old topbar-flex class - replaced with new topbar-content structure in styles.css */
/*
.topbar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-separator {
    margin: 0 15px;
}
*/

/* ============================================
   PACKAGE UTILITIES
   ============================================ */
.package-image-container {
    margin-bottom: 40px;
}

.package-main-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.package-title {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.package-rating-container {
    margin-bottom: 20px;
}

.package-star-rating {
    color: #FFD700;
    font-size: 1.5rem;
}

.package-star-text {
    color: #666;
    margin-left: 10px;
}

.package-meta-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.package-description {
    line-height: 1.8;
    color: #333;
}

.package-price-container {
    margin-bottom: 20px;
    text-align: center;
}

.package-cta-title {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.package-cta-text {
    margin-bottom: 20px;
}

.no-packages-message {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
}

/* ============================================
   FILTER SECTION
   ============================================ */
.filters-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.page-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.no-results-alert {
    max-width: 600px;
    margin: 50px auto;
}

/* ============================================
   PAGE BANNERS
   ============================================ */
.page-banner-dynamic {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ============================================
   HIDE/SHOW UTILITIES
   ============================================ */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* ============================================
   ALERT MESSAGE DISPLAY
   ============================================ */
.alert-display-message {
    display: none;
    margin-bottom: 15px;
}

.alert-display-message.show {
    display: block;
}
