/**
 * Programme template styling
 *
 * @package Anambas_Foundation
 */

/* Hero Section */
.programme-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

/* Hero content vertical centering */
.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 400px;
}

.hero-content {
    width: 100%;
}

/* Two-column layout */
@media (max-width: 767px) {
    .programme-two-columns {
        flex-direction: column;
    }

    .programme-column-left,
    .programme-column-right {
        width: 100%;
    }
}

/* Gallery items */
.programme-gallery-item {
    transition: transform 0.3s ease;
}

.programme-gallery-item:hover {
    transform: translateY(-5px);
}

.programme-gallery-item img {
    transition: all 0.3s ease;
}

.programme-gallery-item:hover img {
    filter: brightness(1.1);
}

/* Programme cards */
.programme-card {
    transition: all 0.3s ease;
}

.programme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Form styling */
.programme-form input:focus {
    outline: none;
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.2);
}

/* Accessibility improvements */
.programme-hero:focus-within {
    outline: 2px dashed #0f766e;
    outline-offset: 4px;
}