/**
 * Location Info Styles
 * Matches the "Location Info" styling from React HomePage
 */

.fuziion-location-info-wrapper {
    width: 100%;
    height: 100%;
}

.fuziion-location-info-card {
    padding: 32px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Header with Icon and Title */
.fuziion-location-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.fuziion-location-info-icon-circle {
    width: 48px;
    height: 48px;
    background: linear-gradient(to bottom right, var(--icon-gradient-from, #997676), var(--icon-gradient-to, #d4a5a5));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.fuziion-location-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.fuziion-location-info-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.fuziion-location-info-title {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: #120d0d;
}

/* Content Section */
.fuziion-location-info-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
    flex: 1;
}

.fuziion-location-info-section {
    padding-top: 16px;
    padding-bottom: 16px;
}

.fuziion-location-info-section-with-border {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.fuziion-location-info-section-inner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.fuziion-location-info-icon-small {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #997676;
    flex-shrink: 0;
    margin-top: 2px;
}

.fuziion-location-info-icon-small svg {
    width: 20px;
    height: 20px;
    display: block;
}

.fuziion-location-info-text {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

.fuziion-location-info-label {
    color: #120d0d;
    font-weight: 500;
}

/* Map Section */
.fuziion-location-info-map {
    width: 100%;
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fuziion-location-info-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* Button */
.fuziion-location-info-button-wrapper {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.fuziion-location-info-button {
    display: block;
    width: 100%;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: transparent;
    color: #120d0d;
    border: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
}

.fuziion-location-info-button:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
    text-decoration: none;
}

.fuziion-location-info-button:active {
    transform: translateY(0);
}

.fuziion-location-info-button-arrow {
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.fuziion-location-info-button:hover .fuziion-location-info-button-arrow {
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fuziion-location-info-card {
        padding: 24px;
    }

    .fuziion-location-info-header {
        margin-bottom: 20px;
    }

    .fuziion-location-info-icon-circle {
        width: 44px;
        height: 44px;
    }

    .fuziion-location-info-icon svg {
        width: 20px;
        height: 20px;
    }

    .fuziion-location-info-title {
        font-size: 18px;
    }

    .fuziion-location-info-content {
        margin-bottom: 20px;
    }

    .fuziion-location-info-section {
        padding-top: 12px;
    }

    .fuziion-location-info-text {
        font-size: 14px;
    }

    .fuziion-location-info-map iframe {
        height: 300px;
    }

    .fuziion-location-info-button-wrapper {
        padding-top: 20px;
    }

    .fuziion-location-info-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .fuziion-location-info-card {
        padding: 20px;
    }

    .fuziion-location-info-header {
        gap: 10px;
        margin-bottom: 16px;
    }

    .fuziion-location-info-icon-circle {
        width: 40px;
        height: 40px;
    }

    .fuziion-location-info-icon svg {
        width: 18px;
        height: 18px;
    }

    .fuziion-location-info-title {
        font-size: 16px;
    }

    .fuziion-location-info-content {
        margin-bottom: 16px;
    }

    .fuziion-location-info-section {
        padding-top: 10px;
    }

    .fuziion-location-info-section-inner {
        gap: 10px;
    }

    .fuziion-location-info-icon-small svg {
        width: 18px;
        height: 18px;
    }

    .fuziion-location-info-text {
        font-size: 13px;
    }

    .fuziion-location-info-map iframe {
        height: 250px;
    }

    .fuziion-location-info-button-wrapper {
        padding-top: 16px;
    }

    .fuziion-location-info-button {
        padding: 10px 16px;
        font-size: 14px;
    }
}

