/* Packages page specific styles */

.packages-container {
    padding: 60px 0;
    min-height: 70vh;
}

.packages-container h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: 600;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.package-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.package-item:hover {
    transform: translateY(-10px);
}

.package-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.package-portrait {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    object-fit: cover;
}

.package-portrait:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.package-title {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.package-link:hover .package-title {
    color: #007bff;
}

/* Responsive design */
@media (max-width: 768px) {
    .packages-container {
        padding: 40px 20px;
    }
    
    .packages-container h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 30px;
    }
    
    .package-portrait {
        width: 140px;
        height: 140px;
    }
}