/* Location Page Styles */

.location-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    background-color: var(--white);
}

.location-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.location-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--grey-medium);
}

.location-title {
    font-family: 'Gothic A1', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.location-subtitle {
    font-family: 'Gothic A1', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--grey-darker);
    letter-spacing: 1px;
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Map Section */
.map-section {
    width: 100%;
    height: 600px;
    background-color: var(--grey-light);
    border: 1px solid var(--grey-medium);
    overflow: hidden;
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.map-link-button {
    font-family: 'Gothic A1', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--black);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.map-link-button:hover {
    background-color: var(--white);
    color: var(--black);
}

.map-link-button svg {
    filter: grayscale(100%);
    flex-shrink: 0;
}

/* Location Info Section */
.location-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-title {
    font-family: 'Gothic A1', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--grey-medium);
}

.location-info-item {
    display: flex;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--grey-light);
}

.location-info-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.location-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

.location-icon svg {
    filter: grayscale(100%);
}

.location-info-content h3 {
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.location-info-content p {
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--grey-darker);
    line-height: 1.8;
    letter-spacing: 0.5px;
}

/* Location Actions */
.location-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid var(--grey-medium);
}

.location-button {
    font-family: 'Gothic A1', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 15px 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--black);
    text-align: center;
}

.location-button svg {
    filter: grayscale(100%);
    flex-shrink: 0;
}

.location-button:not(.secondary) {
    background-color: var(--black);
    color: var(--white);
}

.location-button:not(.secondary):hover {
    background-color: var(--white);
    color: var(--black);
}

.location-button.secondary {
    background-color: var(--white);
    color: var(--black);
}

.location-button.secondary:hover {
    background-color: var(--black);
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .location-content {
        gap: 40px;
    }

    .map-section {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .location-section {
        padding: 100px 0 60px;
    }

    .location-container {
        padding: 0 20px;
    }

    .location-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }

    .location-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .location-subtitle {
        font-size: 14px;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-section {
        height: 400px;
        order: 2;
    }

    .location-info-section {
        order: 1;
    }

    .location-info-item {
        flex-direction: column;
        gap: 15px;
    }

    .location-icon {
        width: 35px;
        height: 35px;
    }

    .location-actions {
        margin-top: 10px;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .location-section {
        padding: 90px 0 40px;
    }

    .location-container {
        padding: 0 15px;
    }

    .location-header {
        margin-bottom: 30px;
        padding-bottom: 15px;
    }

    .location-title {
        font-size: 24px;
        letter-spacing: 1.5px;
    }

    .section-title {
        font-size: 18px;
    }

    .map-section {
        height: 350px;
    }

    .location-button {
        font-size: 12px;
        padding: 12px 20px;
    }
}

