/* ===== FREE TOUR PAGE STYLES ===== */

.nav-logo-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-decoration: none;
}

.freetour-hero {
    padding: 6rem 0 2rem;
    background: linear-gradient(135deg, var(--color-bg-cream), var(--color-bg-light));
    text-align: center;
}

.freetour-intro {
    padding: 2rem 0;
    background: var(--color-bg-light);
}

.freetour-route {
    padding: 2rem 0 4rem;
    background: var(--color-bg-light);
}

.freetour-section-title {
    text-align: center;
    border-bottom: none;
    position: relative;
    padding-bottom: 1rem;
}

.freetour-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-accent);
}

/* ===== MOBILE: Center stop numbers and text ===== */
@media (max-width: 768px) {
    .freetour-route .tour-stop {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .freetour-route .stop-number {
        align-self: center;
        margin-bottom: 0.5rem;
    }

    .freetour-route .stop-content {
        text-align: center;
    }

    .freetour-route .stop-content p {
        text-align: center;
    }

    .freetour-route .stop-highlight,
    .freetour-route .stop-tip,
    .freetour-route .stop-fun {
        text-align: center;
    }

    .freetour-route .stop-features {
        text-align: left;
        display: inline-block;
    }

    .freetour-route .song-quote {
        text-align: center;
    }

    .freetour-route .song-quote p {
        text-align: center;
    }

    .freetour-hero {
        padding: 5rem 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .freetour-route .tour-stop {
        padding: 1rem;
    }

    .freetour-route .stop-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .freetour-hero {
        padding: 4.5rem 0 1rem;
    }

    .freetour-hero .section-title {
        font-size: 1.6rem;
    }
}
