/**
 * Theme Name:        Shalom
 * Theme URI:         https://shalomproject.olivet.edu
 * Description:       Custom theme for shalomproject.olivet.edu
 * Version:           1.0.0
 * Author:            Luke Colvin
 * Author URI:        https://lukecolvin.me
 * Tags:              block-patterns, full-site-editing
 * Text Domain:       shalom
 * Domain Path:       /assets/lang
 * Tested up to:      6.4
 * Requires at least: 6.2
 * Requires PHP:      7.4
 * License:           GNU General Public License v2.0 or later
 * License URI:       https://www.gnu.org/licenses/gpl-2.0.html
 */

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.site-footer {
    margin-top: auto;
}

.trip-header-container {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
}

.featured-image-full {
    width: 100%;
}

.featured-image-full img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.trip-image {
    height: 400px;
    object-fit: cover;
}

.trip-card {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.trip-card:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}