/* Location Page Styles */

.nav__logo{
    width: 32px;
    margin-left: 90px;
}


.location {
    padding: 4rem 0;
    min-height: 100vh;
}

.location__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.location__header {
    text-align: center;
    margin-bottom: 3rem;
}

.location__title {
    font-size: 2.25rem;
    font-family: "lora", sans-serif;
    color: hsl(210, 52%, 20%);
    margin-bottom: 1rem;
}

.location__description {
    color: hsl(210, 24%, 15%);
    font-size: 1.1rem;
}

.location__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.location__subtitle {
    color: hsl(210, 52%, 20%);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.location__details {
    margin-bottom: 2rem;
}

.location__address {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.address__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: hsla(0, 0%, 100%, .3);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid hsl(210, 52%, 20%);
}

.address__item i {
    font-size: 1.5rem;
    color: hsl(195, 100%, 30%);
    margin-top: .2rem;
}

.address__text h3 {
    color: hsl(210, 52%, 20%);
    margin-bottom: .5rem;
    font-size: 1.1rem;
}

.address__text p {
    color: hsl(210, 24%, 15%);
    line-height: 1.5;
}

.directions__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.direction__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: hsla(0, 0%, 100%, .3);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid hsl(210, 52%, 20%);
}

.direction__item i {
    font-size: 1.5rem;
    color: hsl(195, 100%, 30%);
    margin-top: .2rem;
}

.direction__content h3 {
    color: hsl(210, 52%, 20%);
    margin-bottom: .5rem;
    font-size: 1.1rem;
}

.direction__content p {
    color: hsl(210, 24%, 15%);
    line-height: 1.5;
}

.map__container {
    background-color: hsla(0, 0%, 100%, .3);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid hsl(210, 52%, 20%);
}

.map__embed {
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    overflow: hidden;
}

.map__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.map__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: linear-gradient(90deg, hsl(210, 55%, 20%), hsl(192, 62%, 25%));
    color: #fff;
    padding: 1rem 2rem;
    border-radius: .75rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    min-height: 48px;
    min-width: 140px;
    transition: all .3s;
    position: relative;
}

.map__button--call {
    background: transparent;
    color: hsl(210, 52%, 20%);
    border: 2px solid hsl(210, 52%, 20%);
    min-height: 48px;
    min-width: 120px;
}

.map__button--whatsapp {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
    min-height: 48px;
    min-width: 140px;
}

.map__button--whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
}

.map__button:hover {
    transform: translateY(-2px);
}

.location__nearby {
    margin-bottom: 3rem;
    margin: 0 100px;
}

.nearby__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.nearby__item {
    background-color: hsla(0, 0%, 100%, .3);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid hsl(210, 52%, 20%);
    text-align: center;
    transition: transform .3s;
}

.nearby__item:hover {
    transform: translateY(-5px);
}

.nearby__item i {
    font-size: 2.5rem;
    color: hsl(195, 100%, 30%);
    margin-bottom: 1rem;
}

.nearby__item h3 {
    color: hsl(210, 52%, 20%);
    margin-bottom: .5rem;
    font-size: 1.2rem;
}

.nearby__item p {
    color: hsl(210, 24%, 15%);
    font-size: .9rem;
    line-height: 1.5;
}

.location__cta {
    text-align: center;
}

.cta__title {
    color: hsl(210, 52%, 20%);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta__text {
    color: hsl(210, 24%, 15%);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.location__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, hsl(210, 55%, 20%), hsl(192, 62%, 25%));
    color: #fff;
    padding: 1.4rem 2.5rem;
    border-radius: .75rem;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 24px 32px hsla(210, 54%, 24%, .3);
    font-size: 1.1rem;
    min-height: 52px;
    min-width: 160px;
    cursor: pointer;
    transition: all .3s;
    position: relative;
}

.location__button:hover {
    transform: translateY(-2px);
}

/* Mobile Responsiveness - All divs stacked vertically */
@media screen and (max-width: 1024px) {
    .location__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .map__actions {
        flex-direction: column;
    }

    .map__button {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .location__title {
        font-size: 1.8rem;
    }

    .location__subtitle {
        font-size: 1.3rem;
    }

    .address__item,
    .direction__item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }

    .address__item i,
    .direction__item i {
        margin-top: 0;
        font-size: 2rem;
    }

    .map__container {
        padding: 1rem;
    }

    .map__embed iframe {
        height: 300px;
    }
}

@media screen and (max-width: 480px) {
    .location {
        padding: 2rem 0;
    }

    .location__title {
        font-size: 1.6rem;
    }

    .location__subtitle {
        font-size: 1.2rem;
    }

    .address__item,
    .direction__item {
        padding: 0.8rem;
    }

    .map__embed iframe {
        height: 250px;
    }

    .nearby__item {
        padding: 1rem;
    }
}