.fishing-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(5, 11, 17, 0.4) 0%, rgba(5, 11, 17, 0.95) 100%),
                url('/static/img/fishing/main.jpg') no-repeat center center;
    background-size: cover;
}

.fishing-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.fishing-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    letter-spacing: 1px;
}

.fishing-title span {
    font-style: italic;
    color: var(--accent-color);
}

.spots-section {
    padding: 100px 50px;
    box-sizing: border-box;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.spot-row {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.spot-row:nth-child(even) {
    flex-direction: row-reverse;
}

.spot-img-col {
    flex: 0 0 50%;
    height: 450px;
    overflow: hidden;
    border: 1px solid rgba(197, 168, 128, 0.15);
    background-color: #101216;
}

.spot-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) contrast(1.05);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.spot-row:hover .spot-img-col img {
    transform: scale(1.03);
}

.spot-info-col {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spot-num {
    font-family: 'Playfair Display', serif;
    color: var(--accent-color);
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 15px;
}

.spot-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.spot-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 30px 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.spot-fish-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fish-tag {
    border: 1px solid rgba(197, 168, 128, 0.25);
    color: var(--accent-color);
    padding: 6px 12px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .spots-section {
        padding: 60px 20px;
        gap: 80px;
    }
    .spot-row, .spot-row:nth-child(even) {
        flex-direction: column;
        gap: 35px;
    }
    .spot-img-col {
        flex: 1 1 auto;
        width: 100%;
        height: 300px;
    }
    .spot-info-col {
        flex: 1 1 auto;
        width: 100%;
    }
    .spot-name {
        font-size: 1.8rem;
    }
}