/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    line-height: 1.6;
    color: #1b7b89;
    background-color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: 'Nunito Sans', sans-serif;
    cursor: pointer;
    border: none;
    outline: none;
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    flex: 1;
}

.header__title-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header__logo-image {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.header__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1b7b89;
}

.header__nav {
    display: flex;
    gap: 2rem;
}

.header__link {
    font-weight: 600;
    color: #1b7b89;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.header__link:hover {
    color: #2ea6a8;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), 
                url('./src/images/hero.jpg') center/cover no-repeat;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero__content {
    max-width: 600px;
    z-index: 2;
    text-align: center;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0.95;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #ffc453;
    color: #1b7b89;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 196, 83, 0.3);
}

.hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 196, 83, 0.4);
}

.hero__cta-icon {
    font-size: 1.3rem;
}

.hero__image-placeholder {
    position: absolute;
    right: -10%;
    top: 10%;
    width: 500px;
    height: 500px;
    background-color: #c4c4c4;
    border-radius: 20px;
    opacity: 0.15;
    transform: rotate(15deg);
}

/* Tours Section */
.tours {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.tours__container {
    max-width: 1200px;
    margin: 0 auto;
}

.tours__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1b7b89;
    text-align: center;
    margin-bottom: 1rem;
}

.tours__description {
    font-size: 1.1rem;
    color: #2ea6a8;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 400;
}

.tours__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

/* Tour Card */
.tour-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(27, 123, 137, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 166, 168, 0.1);
    width: 100%;
    max-width: 350px;
    flex: 0 0 auto;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(27, 123, 137, 0.15);
}

.tour-card__image-placeholder {
    width: 100%;
    height: 240px;
    background-color: #c4c4c4;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Individual card images */
.tour-card:nth-child(1) .tour-card__image-placeholder {
    background-image: url('./src/images/ciudad.jpg');
}

.tour-card:nth-child(2) .tour-card__image-placeholder {
    background-image: url('./src/images/minas.jpg');
}

.tour-card:nth-child(3) .tour-card__image-placeholder {
    background-image: url('./src/images/independencia.png');
}

.tour-card:nth-child(4) .tour-card__image-placeholder {
    background-image: url('./src/images/cubilete.jpg');
}

.tour-card:nth-child(5) .tour-card__image-placeholder {
    background-image: url('./src/images/motos.jpg');
}

.tour-card__content {
    padding: 1.5rem;
}

.tour-card__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1b7b89;
    margin-bottom: 1rem;
}

.tour-card__text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.tour-card__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #2ea6a8;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.tour-card__button:hover {
    background-color: #1b7b89;
    transform: translateX(4px);
}

.tour-card__button-icon {
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffc453 0%, #ffb733 100%);
}

.contact__container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1b7b89;
    margin-bottom: 1rem;
}

.contact__text {
    font-size: 1.15rem;
    color: #1b7b89;
    margin-bottom: 3rem;
    font-weight: 400;
}

.contact__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact__icon {
    color: #1b7b89;
    font-size: 1.8rem;
}

.contact__detail {
    font-size: 1rem;
    color: #1b7b89;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #1b7b89;
    padding: 2rem;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer__text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 400;
}

.footer__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffc453;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer__link:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer__link-icon {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header__container {
        flex-direction: column;
        gap: 1rem;
    }

    .header__nav {
        gap: 1.5rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .hero__image-placeholder {
        display: none;
    }

    .tours__title {
        font-size: 2rem;
    }

    .tours__grid {
        grid-template-columns: 1fr;
    }

    .contact__title {
        font-size: 2rem;
    }

    .contact__info {
        flex-direction: column;
        align-items: center;
    }

    .footer__container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .tours__title {
        font-size: 1.75rem;
    }

    .contact__title {
        font-size: 1.75rem;
    }
}

/* Extras Section */
.extras {
    padding: 6rem 2rem;
    background-color: #f9fdfd;
}

.extras__container {
    max-width: 1100px;
    margin: 0 auto;
}

.extras__title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #1b7b89;
    text-align: center;
    margin-bottom: 1rem;
}

.extras__description {
    text-align: center;
    font-size: 1.1rem;
    color: #2ea6a8;
    margin-bottom: 4rem;
}

/* Soltero Fest – Highlight Event */
.extra-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem 3rem;
    border-radius: 18px;
    margin-bottom: 3rem;
    background: linear-gradient(
        135deg,
        #1b7b89 0%,
        #2ea6a8 100%
    );
    color: #ffffff;
    transition: all 0.3s ease;
}

.extra-feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(27, 123, 137, 0.25);
}

.extra-feature__content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.extra-feature__icon {
    font-size: 3rem;
    color: #ffc453;
}

.extra-feature__title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.extra-feature__text {
    font-size: 1rem;
    opacity: 0.95;
}

.extra-feature__arrow {
    font-size: 2rem;
    color: #ffc453;
}

/* Traslado – Utility Strip */
.extra-strip {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 14px;
    border: 2px dashed #2ea6a8;
    background-color: #ffffff;
    color: #1b7b89;
    transition: all 0.3s ease;
}

.extra-strip:hover {
    background-color: #f0fbfb;
    transform: translateY(-4px);
}

.extra-strip__icon {
    font-size: 2.8rem;
    color: #2ea6a8;
}

.extra-strip__content {
    flex: 1;
}

.extra-strip__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.extra-strip__text {
    font-size: 0.95rem;
    color: #555;
}

.extra-strip__arrow {
    font-size: 1.6rem;
    color: #2ea6a8;
}

/* Responsive Extras */
@media (max-width: 768px) {
    .extra-feature {
        flex-direction: column;
        text-align: center;
    }

    .extra-feature__content {
        flex-direction: column;
    }

    .extra-strip {
        flex-direction: column;
        text-align: center;
    }
}


/* Desktop */
#inicio,
#tours,
#contacto,
#servicios-adicionales {
    scroll-margin-top: 80px;
}

/* Mobile */
@media (max-width: 768px) {
    #inicio,
    #tours,
    #contacto {
        scroll-margin-top: 110px;
    }

    /* Servicios adicionales necesita más aire */
    #servicios-adicionales {
        scroll-margin-top: 200px;
    }
}

