/* Location 페이지 스타일 */

.location-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* 섹션 1: 제목 */
.location-section-1 {
    width: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.location-section-1 h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #cccccc;
}

.location-subtitle {
    font-size: 18px;
    color: #666;
    font-style: italic;
}

/* 섹션 2: 지도 및 주소 정보 */
.location-section-2 {
    width: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    background-color: #f8f8f8;
}

.location-content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.location-info {
    width: 100%;
    margin-bottom: 50px;
}

.location-info h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #cccccc;
}

.location-address-card {
    background-color: #ffffff;
    border: 2px solid #005831;
    border-radius: 10px;
    padding: 40px;
    margin: 0 auto;
    max-width: 600px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.address-title {
    font-size: 32px;
    font-weight: bold;
    color: #2d5016;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #005831;
}

.address-content {
    text-align: left;
}

.address-text {
    font-size: 24px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.location-map-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    min-width: 300px;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.location-map-container #location-map {
    width: 100%;
    height: 500px;
    min-width: 300px;
    min-height: 500px;
}

.location-map-placeholder {
    width: 100%;
    height: 500px;
    min-width: 300px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e0e0e0;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    padding: 40px;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .location-container {
        padding: 40px 15px;
    }

    .location-section-1,
    .location-section-2 {
        padding: 60px 15px;
        min-height: auto;
    }

    .location-section-1 h1 {
        font-size: 36px;
    }

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

    .location-info h2 {
        font-size: 36px;
    }

    .location-address-card {
        padding: 30px 20px;
    }

    .address-title {
        font-size: 24px;
    }

    .address-text {
        font-size: 18px;
    }

    .location-map-container #location-map,
    .location-map-placeholder {
        height: 400px;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .location-section-1 h1 {
        font-size: 28px;
    }

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

    .location-info h2 {
        font-size: 28px;
    }

    .location-address-card {
        padding: 25px 15px;
    }

    .address-title {
        font-size: 20px;
    }

    .address-text {
        font-size: 16px;
    }

    .location-map-container #location-map,
    .location-map-placeholder {
        height: 300px;
        min-height: 300px;
    }
}



