/* 探索页面样式 */
.explore-main {
    padding-top: 80px;
    padding-bottom: 4rem;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/brindisi-hero.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 3rem;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.attractions-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 0 5%;
    background: #f9f9f9;
}

.attraction-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 400px;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.attraction-card img {
    width: 40%;
    height: 400px; /* 固定图片高度 */
    object-fit: cover;
    object-position: center; /* 确保图片居中显示 */
    transition: transform 0.3s ease;
    flex-shrink: 0; /* 防止图片被压缩 */
}

.attraction-card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px; /* 确保内容区域高度一致 */
}

.card-content h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.6rem;
}

.card-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    flex-grow: 1;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4285F4;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 6px;
    background: rgba(66, 133, 244, 0.1);
    align-self: flex-end;
    margin-top: auto;
}

.explore-link:hover {
    color: #fff;
    background: #4285F4;
    transform: translateY(-2px);
}

.explore-link i {
    font-size: 1.1rem;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .attraction-card {
        flex-direction: column;
        height: auto;
    }

    .attraction-card img {
        width: 100%;
        height: 250px;
    }

    .card-content {
        padding: 1.5rem;
        min-height: auto;
    }

    .card-content h3 {
        font-size: 1.4rem;
    }

    .card-content p {
        font-size: 1rem;
    }

    .explore-link {
        align-self: flex-start;
    }
} 