/* Location Page Styles */
.location-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 2rem 4rem 2rem;
    margin-top: -5px;
    text-align: center;
}

.location-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.location-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

.location-content {
    padding: 4rem 2rem;
    background-color: #f7fafc;
}

.location-container {
    max-width: 1000px;
    margin: 0 auto;
}

.location-section {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.location-address {
    margin-bottom: 2rem;
}

.location-address-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.location-address-detail {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.location-address-note {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
}

.location-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.location-contact {
    text-align: center;
}

.location-contact-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-bottom: 1rem;
}

.location-contact-button:hover {
    background-color: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.location-contact-text {
    font-size: 1rem;
    color: #666;
}

.location-map {
    width: 100%;
    min-height: 400px;
}

.root_daum_roughmap {
    width: 100% !important;
    height: 400px !important;
}

@media screen and (max-width: 768px) {
    .location-hero {
        padding: 5rem 1.5rem 3rem 1.5rem;
        margin-top: -5px;
    }

    .location-hero-title {
        font-size: 2rem;
    }

    .location-hero-subtitle {
        font-size: 1.1rem;
    }

    .location-section {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }

    .location-map {
        min-height: 300px;
    }

    .root_daum_roughmap {
        height: 300px !important;
    }
}
